软测单独项目
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.
 
 
 
 
 
 

21 lines
558 B

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FangYar.Model
{
public class TreeNodeModel
{
public string id { get; set; }
public string pId { get; set; }
public string icon { get; set; }
public string name { get; set; }
public bool open { get; set; }
public bool isParent { get; set; }
public object extend { get; set; }
public object chkDisabled { get; set; }
public List<TreeNodeModel> childs { get; set; }
}
}