using System; using System.Collections.Generic; using System.Text; namespace Model.ModelDto.SysDto { /// /// εˆ†ι…ζƒι™Dto /// public class MenuDto { public int Id; public string ParentId; public string Title; public bool @checked; public bool Expand; public string MenuNo; public List children { get; set; } } }