using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.Model.Syllabus.Dtos { public class SyllabusNode { public ICollection Children { get; set; } /// /// id /// public string Id { get; set; } /// /// 标题 /// public string Title { get; set; } /// /// 是否展开 /// public bool Expand { get; set; } /// /// 是否禁用响应 /// public bool Disabled { get; set; } /// /// 是否禁用复选框 /// public bool DisableCheckbox { get; set; } /// /// 选中当前节点 /// public bool Selected { get; set; } public bool @Checked { get; set; } /// /// 排序 /// public int Order { get; set; } /// /// 类型 /// public int Type { get; set; } /// /// 备注 /// public string Remark { get; set; } } }