12345678910111213141516171819202122 |
- using Newtonsoft.Json;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using YiSha.Util;
- namespace YiSha.Model.Result
- {
- public class ZtreeInfo
- {
- //[JsonConverter(typeof(StringJsonConverter))]
- public int id { get; set; }
- //[JsonConverter(typeof(StringJsonConverter))]
- public int pId { get; set; }
- public string name { get; set; }
- }
- }
|