diff --git a/README.md b/README.md index 0fe4f075..b485eade 100644 --- a/README.md +++ b/README.md @@ -60,4 +60,4 @@ For detailed documentation, see the [Wiki](https://github.com/PepperDash/Essenti ## How-To (Getting Started) -See [Getting Started](https://github.com/PepperDash/Essentials/wiki/Get-started#how-to-get-started) +See [Getting Started](https://github.com/PepperDash/Essentials/wiki/Get-started#how-to-get-started) \ No newline at end of file diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs new file mode 100644 index 00000000..f89624b0 --- /dev/null +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs @@ -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(); + } +}