From 08a4099842aaad57b931d0d54072761bf1106104 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 20 Feb 2024 08:27:01 -0600 Subject: [PATCH] refactor: change ApiOnline to BoolFeedback --- .../DeviceTypeInterfaces/IMobileControl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs index 3693155a..11e8ac41 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs @@ -33,7 +33,7 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces string SystemUuid { get; } - bool ApiOnlineAndAuthorized { get; } + BoolFeedback ApiOnlineAndAuthorized { get;} void SendMessageObject(IMobileControlMessage o);