You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.2 KiB
37 lines
1.2 KiB
using System.Collections.Generic;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Tree
|
|
{
|
|
/// <summary>
|
|
/// JsTree 数据模型实体
|
|
/// {
|
|
/// id : "string" // required
|
|
/// parent : "string" // required
|
|
/// text : "string" // node text
|
|
/// icon : "string" // string for custom
|
|
/// state : {
|
|
/// opened : boolean // is the node open
|
|
/// disabled : boolean // is the node disabled
|
|
/// selected : boolean // is the node selected
|
|
/// },
|
|
/// li_attr : {} // attributes for the generated LI node
|
|
/// a_attr : {} // attributes for the generated A node
|
|
/// }
|
|
/// </summary>
|
|
public class JsTreeModel
|
|
{
|
|
public long id { get; set; }
|
|
public long parent { get; set; }
|
|
public string text { get; set; }
|
|
public string icon { get; set; }
|
|
public JsTreeStateModel state { get; set; }
|
|
public List<JsTreeModel> children { get; set; }
|
|
}
|
|
|
|
public class JsTreeStateModel
|
|
{
|
|
public bool opened { get; set; }
|
|
public bool disabled { get; set; }
|
|
public bool selected { get; set; }
|
|
}
|
|
}
|