feat(essentials): Adds IMobileControl3 interface to maintain backwards compatibility

This commit is contained in:
Neil Dorin
2021-08-16 14:27:28 -06:00
parent ffd0fbc57b
commit 01b713e6e1
2 changed files with 22 additions and 5 deletions

View File

@@ -13,6 +13,14 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
void LinkSystemMonitorToAppServer();
}
/// <summary>
/// Describes a MobileSystemController that accepts IEssentialsRoom
/// </summary>
public interface IMobileControl3 : IMobileControl
{
void CreateMobileControlRoomBridge(IEssentialsRoom room, IMobileControl parent);
}
/// <summary>
/// Describes a MobileControl Room Bridge
/// </summary>