diff --git a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodecPropertiesConfig.cs b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodecPropertiesConfig.cs index 2f335780..256b803a 100644 --- a/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodecPropertiesConfig.cs +++ b/essentials-framework/Essentials Devices Common/Essentials Devices Common/VideoCodec/CiscoCodec/CiscoSparkCodecPropertiesConfig.cs @@ -40,6 +40,9 @@ namespace PepperDash.Essentials.Devices.Common.Codec [JsonProperty("phonebookResultsLimit")] public uint PhonebookResultsLimit { get; set; } + [JsonProperty("UiBranding")] + public BrandingLogoProperties UiBranding { get; set; } + } public class SharingProperties @@ -47,4 +50,13 @@ namespace PepperDash.Essentials.Devices.Common.Codec [JsonProperty("autoShareContentWhileInCall")] public bool AutoShareContentWhileInCall { get; set; } } + + public class BrandingLogoProperties + { + [JsonProperty("enable")] + public bool Enable { get; set; } + + [JsonProperty("brandingUrl")] + public bool LogoUrl { get; set; } + } } \ No newline at end of file