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