mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-23 03:02:24 +00:00
4e2bb85623
- Restructured code to be event based with modules - Added MQTT module for Home Assistant - Added pushover notifications - Added web service API subscriptions file to persist subscriptions
13 lines
277 B
C#
13 lines
277 B
C#
using HAI_Shared;
|
|
using System;
|
|
|
|
namespace OmniLinkBridge.OmniLink
|
|
{
|
|
public class SystemStatusEventArgs : EventArgs
|
|
{
|
|
public enuEventType Type { get; set; }
|
|
public string Value { get; set; }
|
|
public bool SendNotification { get; set; }
|
|
}
|
|
}
|