using Newtonsoft.Json; namespace PepperDash.Essentials.Room.Config { /// /// /// public class EssentialsHuddleRoomPropertiesConfig : EssentialsRoomPropertiesConfig { /// /// The key of the default display device /// [JsonProperty("defaultDisplayKey")] public string DefaultDisplayKey { get; set; } /// /// The key of the default audio device /// [JsonProperty("defaultAudioKey")] public string DefaultAudioKey { get; set; } /// /// The key of the source list for the room /// [JsonProperty("sourceListKey")] public string SourceListKey { get; set; } /// /// The key of the default source item from the source list /// [JsonProperty("defaultSourceItem")] public string DefaultSourceItem { get; set; } } }