OmniLinkBridge/OmniLinkBridge/OmniLink/ThermostatStatusEventArgs.cs
Ryan Wagoner 177dda4c1a - Fix compatibility with Home Assistant 0.95.4 MQTT extra keys
- Don't publish invalid thermostat temperatures
2019-11-05 22:49:30 -05:00

17 lines
382 B
C#

using HAI_Shared;
using System;
namespace OmniLinkBridge.OmniLink
{
public class ThermostatStatusEventArgs : EventArgs
{
public ushort ID { get; set; }
public clsThermostat Thermostat { get; set; }
/// <summary>
/// Set to true when fired by thermostat polling
/// </summary>
public bool EventTimer { get; set; }
}
}