add config for branding

This commit is contained in:
Andrew Welker
2020-09-08 15:14:07 -06:00
parent 62b6c5193a
commit f5d7c90be1

View File

@@ -40,6 +40,9 @@ namespace PepperDash.Essentials.Devices.Common.Codec
[JsonProperty("phonebookResultsLimit")] [JsonProperty("phonebookResultsLimit")]
public uint PhonebookResultsLimit { get; set; } public uint PhonebookResultsLimit { get; set; }
[JsonProperty("UiBranding")]
public BrandingLogoProperties UiBranding { get; set; }
} }
public class SharingProperties public class SharingProperties
@@ -47,4 +50,13 @@ namespace PepperDash.Essentials.Devices.Common.Codec
[JsonProperty("autoShareContentWhileInCall")] [JsonProperty("autoShareContentWhileInCall")]
public bool AutoShareContentWhileInCall { get; set; } public bool AutoShareContentWhileInCall { get; set; }
} }
public class BrandingLogoProperties
{
[JsonProperty("enable")]
public bool Enable { get; set; }
[JsonProperty("brandingUrl")]
public bool LogoUrl { get; set; }
}
} }