From 67a7422cd0437a2a7b0a411f320dafd252a39dc0 Mon Sep 17 00:00:00 2001 From: aknous Date: Tue, 11 Mar 2025 23:33:59 -0400 Subject: [PATCH] feat: adds IHasOSD interface --- .../DeviceTypeInterfaces/IHasOSD.cs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs 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(); + } +}