using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace VueWebApi.Models { public class GroupUser { public string storg_code { get; set; } public string code { get; set; } public string name { get; set; } public string flag { get; set; } public List children { get; set; } } public class GroupUserCont { public string usercode { get; set; } public string username { get; set; } } }