11 lines
274 B
C#
11 lines
274 B
C#
namespace Tnb.ProductionMgr.Entities.Dto
|
|
{
|
|
public class DictionaryTreeOutput
|
|
{
|
|
public string id { get; set; }
|
|
public string parentId { get; set; }
|
|
public List<dynamic> Child { get; set; }
|
|
public bool HasChild { get; set; }
|
|
}
|
|
}
|