feat: add IMobileControlAction interface

This commit is contained in:
Andrew Welker
2024-02-29 12:36:50 -06:00
parent d6f896c4b2
commit 5084861067

View File

@@ -98,4 +98,12 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
void UpdateAppUrl(string url);
}
public interface IMobileControlAction
{
IMobileControlMessenger Messenger { get; }
Action<string,string, JToken> Action { get; }
}
}