using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Application.System.Dtos { public class MenuTreeOutput { /// /// 标签 /// public string Title { get; set; } /// /// 主键 /// public string Key { get; set; } public string value { get; set; } public string type { get; set; } /// /// 子菜单 /// public List Children { get; set; } } }