feat: renames interface

This commit is contained in:
aknous
2025-03-12 11:00:44 -04:00
parent 67a7422cd0
commit bada7e3a25

View File

@@ -6,9 +6,9 @@ using System.Threading.Tasks;
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
{ {
public interface IHasOSD public interface IHasWebView
{ {
void ShowOsdMessage(string url, string mobileControlPath, string mode, string title, string target); void ShowWebView(string url, string mobileControlPath, string mode, string title, string target);
void HideOsdMessage(); void HideWebView();
} }
} }