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(); } }