mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 02:14:56 +00:00
40 lines
1.0 KiB
C#
40 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace PepperDash.Essentials.Room.Config
|
|
{
|
|
public class EssentialsTechRoomConfig
|
|
{
|
|
[JsonProperty("dummySourceKey")]
|
|
public string DummySourceKey { get; set; }
|
|
|
|
[JsonProperty("displays")]
|
|
public List<string> Displays;
|
|
|
|
[JsonProperty("tuners")]
|
|
public List<string> Tuners;
|
|
|
|
[JsonProperty("userPin")]
|
|
public string UserPin;
|
|
|
|
[JsonProperty("techPin")]
|
|
public string TechPin;
|
|
|
|
[JsonProperty("presetsFileName")]
|
|
public string PresetsFileName;
|
|
|
|
[JsonProperty("scheduledEvents")]
|
|
public List<ScheduledEventConfig> ScheduledEvents;
|
|
|
|
[JsonProperty("isPrimary")] public bool IsPrimary;
|
|
|
|
[JsonProperty("isTvPresetsProvider")] public bool IsTvPresetsProvider;
|
|
|
|
public EssentialsTechRoomConfig()
|
|
{
|
|
Displays = new List<string>();
|
|
Tuners = new List<string>();
|
|
ScheduledEvents = new List<ScheduledEventConfig>();
|
|
}
|
|
}
|
|
} |