From 8762f84548f8d3957b5c134896aac4d001c9bb3a Mon Sep 17 00:00:00 2001 From: aknous Date: Thu, 20 Mar 2025 00:40:39 -0400 Subject: [PATCH] feat: adds WebviewVisible property to IHasWebView --- .../DeviceTypeInterfaces/IHasWebView.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs index 4c36ce4a..3ed9871a 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs @@ -8,6 +8,7 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces { public interface IHasWebView { + public bool WebviewIsVisible { get; } void ShowWebView(string url, string mode, string title, string target); void HideWebView(); }