OmniLinkBridge/OmniLinkBridge/OmniLink/SystemStatusEventArgs.cs

14 lines
322 B
C#

using HAI_Shared;
using System;
namespace OmniLinkBridge.OmniLink
{
public class SystemStatusEventArgs : EventArgs
{
public SystemEventType Type { get; set; }
public string Value { get; set; }
public bool Trouble { get; set; }
public bool SendNotification { get; set; }
}
}