From a3c7d0c96a50ff969cb66f8510a414cae9407050 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 20 Feb 2024 08:13:46 -0600 Subject: [PATCH] refactor: add online property for API --- .../DeviceTypeInterfaces/IMobileControl.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs index b408b0f9..3693155a 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs @@ -33,6 +33,8 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces string SystemUuid { get; } + bool ApiOnlineAndAuthorized { get; } + void SendMessageObject(IMobileControlMessage o); void AddAction(string key, Action action);