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.
13 lines
368 B
13 lines
368 B
namespace NFine.Code
|
|
{
|
|
public class TreeGridModel
|
|
{
|
|
public string id { get; set; }
|
|
public string parentId { get; set; }
|
|
public string text { get; set; }
|
|
public bool isLeaf { get; set; }
|
|
public bool expanded { get; set; }
|
|
public bool loaded { get; set; }
|
|
public string entityJson { get; set; }
|
|
}
|
|
}
|