fix: add url property to WebViewClear

This commit is contained in:
Erik Meyer 2026-04-14 10:09:52 -04:00
parent e55ac38719
commit bf517ad8b8

View file

@ -186,6 +186,12 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
/// </summary> /// </summary>
[JsonProperty("id")] [JsonProperty("id")]
public string Id { get; set; } public string Id { get; set; }
/// <summary>
/// The URL that was displayed in the webview that was cleared.
/// </summary>
[JsonProperty("url")]
public string Url { get; set; }
} }
/// <summary> /// <summary>