mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
Mobile Control (for the moment) relies on these classes, so they are necessary in Essentials until we determine a better solution.
22 lines
674 B
C#
22 lines
674 B
C#
using System.Collections.Generic;
|
|
|
|
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>();
|
|
}
|
|
}
|
|
} |