17 lines
391 B
C#
17 lines
391 B
C#
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<dynamic> Child { get; set; }
|
|
public bool HasChild { get; set; }
|
|
}
|
|
}
|