mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-12 10:43:12 +00:00
17 lines
382 B
C#
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; }
|
|
}
|
|
}
|