From d7af57ba169bdfe6d8e436b2c74a52d381dbd441 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Mon, 19 Feb 2024 17:09:38 -0600 Subject: [PATCH] feat: add Properties to IMobileControl3 interface --- .../DeviceTypeInterfaces/IMobileControl.cs | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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);