namespace Tnb.ProductionMgr.Entities.Dto { public class DictionaryTreeOutput { public string id { get; set; } public string parentId { get; set; } public List Child { get; set; } public bool HasChild { get; set; } } }