From bada7e3a2506c9d4467319d9845b0b2190b6e83f Mon Sep 17 00:00:00 2001 From: aknous Date: Wed, 12 Mar 2025 11:00:44 -0400 Subject: [PATCH] feat: renames interface --- .../DeviceTypeInterfaces/{IHasOSD.cs => IHasWebView.cs} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename src/PepperDash.Essentials.Core/DeviceTypeInterfaces/{IHasOSD.cs => IHasWebView.cs} (53%) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs similarity index 53% rename from src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs rename to src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs index d58d7469..278c3e13 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasOSD.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs @@ -6,9 +6,9 @@ using System.Threading.Tasks; namespace PepperDash.Essentials.Core.DeviceTypeInterfaces { - public interface IHasOSD + public interface IHasWebView { - void ShowOsdMessage(string url, string mobileControlPath, string mode, string title, string target); - void HideOsdMessage(); + void ShowWebView(string url, string mobileControlPath, string mode, string title, string target); + void HideWebView(); } }