diff --git a/3-series/MobileControlConfig.cs b/3-series/MobileControlConfig.cs index 821f911..4d5b7c0 100644 --- a/3-series/MobileControlConfig.cs +++ b/3-series/MobileControlConfig.cs @@ -116,6 +116,21 @@ public class MobileControlApplicationConfig [JsonProperty("enableRemoteLogging")] public bool Logging { get; set; } + + [JsonProperty("partnerMetadata", NullValueHandling = NullValueHandling.Ignore)] + public List PartnerMetadata { get; set; } + } + + public class MobileControlPartnerMetadata + { + [JsonProperty("role")] + public string Role { get; set; } + + [JsonProperty("description")] + public string Description { get; set; } + + [JsonProperty("logo")] + public string LogoPath { get; set; } } public class McMode