From 5084861067b2a4a46f59d611398f2b0b339b7043 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Thu, 29 Feb 2024 12:36:50 -0600 Subject: [PATCH] feat: add IMobileControlAction interface --- .../DeviceTypeInterfaces/IMobileControl.cs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs index 064ebda3..3ab7b7c4 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IMobileControl.cs @@ -98,4 +98,12 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces void UpdateAppUrl(string url); } + + public interface IMobileControlAction + { + IMobileControlMessenger Messenger { get; } + + Action Action { get; } + } + } \ No newline at end of file