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
15 lines
260 B
C#
15 lines
260 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace OmniLinkBridge.WebAPI
|
|
{
|
|
[DataContract]
|
|
public class NameContract
|
|
{
|
|
[DataMember]
|
|
public ushort id { get; set; }
|
|
|
|
[DataMember]
|
|
public string name { get; set; }
|
|
}
|
|
}
|