using System.Collections.Generic; namespace PepperDash.Essentials.Room.Config { /// /// /// public class EssentialsPresentationRoomPropertiesConfig : EssentialsRoomPropertiesConfig { public string DefaultAudioBehavior { get; set; } public string DefaultAudioKey { get; set; } public string DefaultVideoBehavior { get; set; } public List DisplayKeys { get; set; } public string SourceListKey { get; set; } public bool HasDsp { get; set; } public EssentialsPresentationRoomPropertiesConfig() { DisplayKeys = new List(); } } }