using System.Collections.Generic; namespace Netch.Models.Server { public class ServerList { /// /// 群组 /// [Newtonsoft.Json.JsonProperty("name")] public string Group; /// /// 节点 /// [Newtonsoft.Json.JsonProperty("list")] public List List; } }