From bf517ad8b834cbd427246952e073136fab7e6414 Mon Sep 17 00:00:00 2001 From: Erik Meyer Date: Tue, 14 Apr 2026 10:09:52 -0400 Subject: [PATCH] fix: add url property to WebViewClear --- .../DeviceTypeInterfaces/IHasWebView.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs index b429a49d..ef766efd 100644 --- a/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs +++ b/src/PepperDash.Essentials.Core/DeviceTypeInterfaces/IHasWebView.cs @@ -186,6 +186,12 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces /// [JsonProperty("id")] public string Id { get; set; } + + /// + /// The URL that was displayed in the webview that was cleared. + /// + [JsonProperty("url")] + public string Url { get; set; } } ///