From 8d34b73cdf9692dd3fa4f2d659a8207333d46014 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 6 Feb 2024 10:51:53 -0600 Subject: [PATCH] feat: add property to send ID to handlers for MC --- .../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 28befce8..944e4a50 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs @@ -22,7 +22,7 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces { void SendMessageObject(IMobileControlMessage o); - void AddAction(string key, Action action); + void AddAction(string key, Action action); void RemoveAction(string key);