From e1b50649fd92f7b9ebb1810c5070fb40ff65f0e5 Mon Sep 17 00:00:00 2001 From: Joshua_Gutenplan <18546589+jgutenplan@users.noreply.github.com> Date: Tue, 30 Apr 2024 21:41:53 -0700 Subject: [PATCH] fix: UiWebViewDisplayActionArgs add target --- .../Interfaces/IVideoCodecUiExtensionsClickedAction.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs b/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs index aba77e13..1c9cafa0 100644 --- a/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs +++ b/src/PepperDash.Essentials.Devices.Common/VideoCodec/Interfaces/IVideoCodecUiExtensionsClickedAction.cs @@ -30,6 +30,12 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces /// <0 - 8192> An HTTP header field.You can add up 15 Header parameters in one command, each holding one HTTP header field. /// public string Header { get; set; } + + /// + /// OSD, Controller, PersistentWebApp Controller: Only for Cisco internal use. + /// OSD: Close the web view that is displayed on the screen of the device.PersistentWebApp: Only for Cisco internal use. + /// + public string Target { get; set; } } }