Working on adding shutdown timing to room, not UI

This commit is contained in:
Heath Volmer
2017-08-19 11:41:30 -06:00
parent 4cda13f004
commit 0becff5320
9 changed files with 177 additions and 47 deletions

View File

@@ -63,8 +63,20 @@ namespace PepperDash.Essentials
{
public string HelpMessage { get; set; }
public string Description { get; set; }
public int ShutdownVacancySeconds { get; set; }
public int ShutdownPromptSeconds { get; set; }
public EssentialsRoomOccSensorConfig OccupancySensors { get; set; }
}
/// <summary>
/// Represents occupancy sensor(s) setup for a room
/// </summary>
public class EssentialsRoomOccSensorConfig
{
public string Mode { get; set; }
public List<string> Types { get; set; }
}
/// <summary>
///
/// </summary>