mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-08-31 19:08:29 +00:00
Adds config object for NDisplayRoom
This commit is contained in:
parent
96d48c9d56
commit
5b05e8bb48
1 changed files with 25 additions and 0 deletions
|
|
@ -0,0 +1,25 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using Crestron.SimplSharp;
|
||||||
|
|
||||||
|
namespace PepperDash.Essentials.Room.Config
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
public class EssentialsNDisplayRoomPropertiesConfig : EssentialsRoomPropertiesConfig
|
||||||
|
{
|
||||||
|
public string DefaultAudioBehavior { get; set; }
|
||||||
|
public string DefaultAudioKey { get; set; }
|
||||||
|
public string DefaultVideoBehavior { get; set; }
|
||||||
|
public Dictionary<string, string> Displays { get; set; }
|
||||||
|
public string SourceListKey { get; set; }
|
||||||
|
|
||||||
|
public EssentialsNDisplayRoomPropertiesConfig()
|
||||||
|
{
|
||||||
|
DisplayKeys = new List<string>();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue