using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CollaborativePlatformProject.CollaborationPlatform.Entity
{
///
///
/// ⽂件名(File Name): TreeViewBind.cs
///
/// 描述(Description): 点击项目下TreeViewBind的数据
///
/// 数据表(Tables): nothing
///
/// 作者(Author): Sun Zheng Ji
///
/// ⽇期(Create Date):
///
/// 修改记录(Revision History):
/// R1:
/// 修改作者:
/// 修改⽇期:
/// 修改理由:
///
///
public class TreeViewBind
{
///
/// 名称
///
public string Name { get; set; }
public bool IsPro { get; set; }
///
/// 子集
///
public List Children { get; set; }
public TreeViewBind(string name)
{
Name = name;
}
public TreeViewBind(string name, List children)
{
Name = name;
Children = children;
}
public TreeViewBind(string name, bool isPro)
{
Name = name;
IsPro = isPro;
}
}
}