14 lines
433 B
C#
14 lines
433 B
C#
namespace IntegrationGateway.Core.Models;
|
|
|
|
public class DeviceTreeNode
|
|
{
|
|
public int Id { get; set; }
|
|
public string SourceId { get; set; } = "";
|
|
public string Name { get; set; } = "";
|
|
public int Type { get; set; }
|
|
public int ObjectType { get; set; }
|
|
public string? Tag { get; set; }
|
|
public Dictionary<string, object?>? Option { get; set; }
|
|
public List<DeviceTreeNode> Children { get; set; } = new();
|
|
}
|