Merge pull request #1232 from PepperDash/feature/IHasOsd

Add IHasWebview interface
This commit is contained in:
Andrew Welker 2025-04-01 08:56:01 -05:00 committed by GitHub
commit 1625cbe6de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 16 additions and 1 deletions

View file

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
{
public interface IHasWebView
{
bool WebviewIsVisible { get; }
void ShowWebView(string url, string mode, string title, string target);
void HideWebView();
}
}