mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-06 17:13:11 +00:00
13 lines
267 B
C#
13 lines
267 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace OmniLinkBridge.MQTT
|
|
{
|
|
public class Number : Device
|
|
{
|
|
public string command_topic { get; set; }
|
|
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string icon { get; set; }
|
|
}
|
|
}
|