add schedule config and schedule stuff

This commit is contained in:
Andrew Welker
2020-12-04 16:21:48 -07:00
parent 9888fbf047
commit f11bdcfd53
4 changed files with 143 additions and 0 deletions

View File

@@ -10,11 +10,13 @@ namespace PepperDash.Essentials.Room.Config
public string UserPin;
public string TechPin;
public string PresetsFileName;
public EssentialsRoomScheduledEventsConfig RoomScheduledEvents;
public EssentialsTechRoomConfig()
{
Displays = new List<string>();
Tuners = new List<string>();
RoomScheduledEvents = new EssentialsRoomScheduledEventsConfig();
}
}
}