mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-11 10:23:11 +00:00
12 lines
308 B
C#
12 lines
308 B
C#
namespace OmniLinkBridge.MQTT
|
|
{
|
|
public class DeviceRegistry
|
|
{
|
|
public string identifiers { get; set; }
|
|
public string name { get; set; }
|
|
public string sw_version { get; set; }
|
|
public string model { get; set; }
|
|
public string manufacturer { get; set; }
|
|
}
|
|
}
|