mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-27 19:34:51 +00:00
25 lines
726 B
C#
25 lines
726 B
C#
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()
|
|
{
|
|
Displays = new Dictionary<string, string>();
|
|
}
|
|
}
|
|
} |