mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-24 09:54:58 +00:00
26 lines
753 B
C#
26 lines
753 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 EssentialsPresentationRoomPropertiesConfig : EssentialsRoomPropertiesConfig
|
|
{
|
|
public string DefaultAudioBehavior { get; set; }
|
|
public string DefaultAudioKey { get; set; }
|
|
public string DefaultVideoBehavior { get; set; }
|
|
public List<string> DisplayKeys { get; set; }
|
|
public string SourceListKey { get; set; }
|
|
public bool HasDsp { get; set; }
|
|
|
|
public EssentialsPresentationRoomPropertiesConfig()
|
|
{
|
|
DisplayKeys = new List<string>();
|
|
}
|
|
}
|
|
} |