TreeList.cs
400 Bytes
using System;
using System.Collections.Generic;
using System.Text;
namespace HHECS.WebCommon.Tree
{
public class TreeList
{
public int id { get; set; }
public string name { get; set; }
public Guid keys { get; set; }
public Guid parentId { get; set; }
public string actionClass { get; set; }
public string lineCode { get; set; }
}
}