using System; using System.Collections.Generic; using System.Linq; using System.Text; using Crestron.SimplSharp; using Newtonsoft.Json; using Newtonsoft.Json.Converters; using Newtonsoft.Json.Linq; 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; } } }