From f5d7c90be194dcc3dcce06f8f5e91b9c736dbce8 Mon Sep 17 00:00:00 2001 From: Andrew Welker Date: Tue, 8 Sep 2020 15:14:07 -0600 Subject: [PATCH] add config for branding --- .../CiscoCodec/CiscoSparkCodecPropertiesConfig.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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