mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-26 19:04:47 +00:00
22 lines
635 B
C#
22 lines
635 B
C#
using System.Collections.Generic;
|
|
|
|
namespace PepperDash.Essentials.Room.Config
|
|
{
|
|
public class EssentialsTechRoomConfig
|
|
{
|
|
public List<string> Displays;
|
|
public List<string> Tuners;
|
|
public string ScheduleProviderKey;
|
|
public string UserPin;
|
|
public string TechPin;
|
|
public string PresetsFileName;
|
|
public List<ScheduledEventConfig> RoomScheduledEvents;
|
|
|
|
public EssentialsTechRoomConfig()
|
|
{
|
|
Displays = new List<string>();
|
|
Tuners = new List<string>();
|
|
RoomScheduledEvents = new List<ScheduledEventConfig>();
|
|
}
|
|
}
|
|
} |