mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-13 11:13:11 +00:00
14 lines
322 B
C#
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; }
|
|
}
|
|
}
|