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; }
}
///