using Microsoft.WindowsAzure.Storage.Table;
using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.Model.Syllabus.Models
{
///
/// 课纲结构
///
public class Syllabus : TableEntity
{
///
/// 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; }
}
}