Skip to content

Commit

Permalink
feat: adds partner metadata object to application config
Browse files Browse the repository at this point in the history
  • Loading branch information
ndorin committed Aug 9, 2024
1 parent 43e1d5b commit f72a7dc
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions 3-series/MobileControlConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,21 @@ public class MobileControlApplicationConfig

[JsonProperty("enableRemoteLogging")]
public bool Logging { get; set; }

[JsonProperty("partnerMetadata", NullValueHandling = NullValueHandling.Ignore)]
public List<MobileControlPartnerMetadata> 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
Expand Down

0 comments on commit f72a7dc

Please sign in to comment.