diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs new file mode 100644 index 00000000..d58d7469 --- /dev/null +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace PepperDash.Essentials.Core.DeviceTypeInterfaces +{ + public interface IHasOSD + { + void ShowOsdMessage(string url, string mobileControlPath, string mode, string title, string target); + void HideOsdMessage(); + } +}