mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 18:34:44 +00:00
19 lines
519 B
C#
19 lines
519 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 EssentialsHuddleRoomPropertiesConfig : EssentialsRoomPropertiesConfig
|
|
{
|
|
public string DefaultDisplayKey { get; set; }
|
|
public string DefaultAudioKey { get; set; }
|
|
public string SourceListKey { get; set; }
|
|
public string DefaultSourceItem { get; set; }
|
|
}
|
|
} |