mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-31 13:25:00 +00:00
Mobile Control (for the moment) relies on these classes, so they are necessary in Essentials until we determine a better solution.
30 lines
667 B
C#
30 lines
667 B
C#
namespace PepperDash.Essentials.Room.Config
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class EssentialsRoomEmergencyConfig
|
|
{
|
|
public EssentialsRoomEmergencyTriggerConfig Trigger { get; set; }
|
|
|
|
public string Behavior { get; set; }
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class EssentialsRoomEmergencyTriggerConfig
|
|
{
|
|
/// <summary>
|
|
/// contact,
|
|
/// </summary>
|
|
public string Type { get; set; }
|
|
/// <summary>
|
|
/// Input number if contact
|
|
/// </summary>
|
|
public int Number { get; set; }
|
|
|
|
public bool TriggerOnClose { get; set; }
|
|
|
|
}
|
|
} |