mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-08 09:43:12 +00:00

- 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
12 lines
216 B
C#
12 lines
216 B
C#
using HAI_Shared;
|
|
using System;
|
|
|
|
namespace OmniLinkBridge.OmniLink
|
|
{
|
|
public class AreaStatusEventArgs : EventArgs
|
|
{
|
|
public ushort ID { get; set; }
|
|
public clsArea Area { get; set; }
|
|
}
|
|
}
|