mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
Mobile Control (for the moment) relies on these classes, so they are necessary in Essentials until we determine a better solution.
34 lines
1000 B
C#
34 lines
1000 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Room.Config
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class EssentialsHuddleRoomPropertiesConfig : EssentialsRoomPropertiesConfig
|
|
{
|
|
/// <summary>
|
|
/// The key of the default display device
|
|
/// </summary>
|
|
[JsonProperty("defaultDisplayKey")]
|
|
public string DefaultDisplayKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// The key of the default audio device
|
|
/// </summary>
|
|
[JsonProperty("defaultAudioKey")]
|
|
public string DefaultAudioKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// The key of the source list for the room
|
|
/// </summary>
|
|
[JsonProperty("sourceListKey")]
|
|
public string SourceListKey { get; set; }
|
|
|
|
/// <summary>
|
|
/// The key of the default source item from the source list
|
|
/// </summary>
|
|
[JsonProperty("defaultSourceItem")]
|
|
public string DefaultSourceItem { get; set; }
|
|
}
|
|
} |