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? Option { get; set; } public List Children { get; set; } = new(); }