using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { public class TreeNode { public string parentValue { get; set; } public string label { get; set; } public int value { get; set; } } }