using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; } } }