mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-30 04:44:49 +00:00
20 lines
504 B
C#
20 lines
504 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 EssentialsTechRoomConfig()
|
|
{
|
|
Displays = new List<string>();
|
|
Tuners = new List<string>();
|
|
}
|
|
}
|
|
} |