| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CallCenterApi.Model
- {
- public class TreeModel
- {
- private string _id;
- /// <summary>
- /// Id
- /// </summary>
- public string id
- {
- set { _id = value; }
- get { return _id; }
- }
- private string iconCls;
- /// <summary>
- /// 图标
- /// </summary>
- public string IconCls
- {
- set { iconCls = value; }
- get { return iconCls; }
- }
- private string _text;
- /// <summary>
- /// 树节点显示文本
- /// </summary>
- public string text
- {
- set { _text = value; }
- get { return _text; }
- }
- private List<TreeModel> _children;
- public List<TreeModel> children
- {
- set { _children = value; }
- get { return _children; }
- }
- }
- }
|