fix: removes public access modifier from WebviewIsVisible prop

This commit is contained in:
aknous
2025-03-20 00:42:30 -04:00
parent 8762f84548
commit 2c28b57806

View File

@@ -8,7 +8,7 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
{
public interface IHasWebView
{
public bool WebviewIsVisible { get; }
bool WebviewIsVisible { get; }
void ShowWebView(string url, string mode, string title, string target);
void HideWebView();
}