using Newtonsoft.Json; namespace Vo.Admin { /// /// 列表 /// public class GetMakeTemplateGategoryListVo { /// /// ID /// public int id { get; set; } /// /// 分类名称 /// public string gategoryName { get; set; } /// /// 分类介绍 /// public string gategoryDetail { get; set; } /// /// 子集 /// public List children { get; set; } } }