namespace IRaCIS.Application.Contracts { public class DictionaryTreeNode { public Guid Id { get; set; } public string KeyName { get; set; } = string.Empty; public string Type { get; set; } = string.Empty; public List Children { get; set; } = new List(); } public class MenuTreeNodeSelect : MenuCommand { public List Children { get; set; } = new List(); public bool IsSelect { get; set; } = false; } public class MenuTreeNode : MenuCommand { public List Children { get; set; } = new List(); } }