using System.Collections.Generic; using Newtonsoft.Json; namespace PepperDash.Essentials.Room.Config { /// /// Represents a SimplRoomPropertiesConfig /// public class SimplRoomPropertiesConfig : EssentialsHuddleVtc1PropertiesConfig { [JsonProperty("roomPhoneNumber")] /// /// Gets or sets the RoomPhoneNumber /// public string RoomPhoneNumber { get; set; } [JsonProperty("roomURI")] /// /// Gets or sets the RoomURI /// public string RoomURI { get; set; } [JsonProperty("speedDials")] /// /// Gets or sets the SpeedDials /// public List SpeedDials { get; set; } [JsonProperty("volumeSliderNames")] /// /// Gets or sets the VolumeSliderNames /// public List VolumeSliderNames { get; set; } } /// /// Represents a SimplSpeedDial /// public class SimplSpeedDial { [JsonProperty("name")] /// /// Gets or sets the Name /// public string Name { get; set; } [JsonProperty("number")] /// /// Gets or sets the Number /// public string Number { get; set; } } }