diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs index 1ca53f67..b408b0f9 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs @@ -26,7 +26,13 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces /// Describes a MobileSystemController that accepts IEssentialsRoom /// public interface IMobileControl3 : IMobileControl - { + { + string Host { get; } + + string ClientAppUrl { get; } + + string SystemUuid { get; } + void SendMessageObject(IMobileControlMessage o); void AddAction(string key, Action action);