mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2024-12-23 03:02:24 +00:00
14 lines
319 B
C#
14 lines
319 B
C#
namespace OmniLinkBridge.MQTT
|
|
{
|
|
public class Light : Device
|
|
{
|
|
public string command_topic { get; set; }
|
|
|
|
public string brightness_state_topic { get; set; }
|
|
|
|
public string brightness_command_topic { get; set; }
|
|
|
|
public int brightness_scale { get; private set; } = 100;
|
|
}
|
|
}
|