mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
20 lines
425 B
C#
20 lines
425 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Netch.Models.Server
|
|
{
|
|
public class ServerList
|
|
{
|
|
/// <summary>
|
|
/// 群组
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("name")]
|
|
public string Group;
|
|
|
|
/// <summary>
|
|
/// 节点
|
|
/// </summary>
|
|
[Newtonsoft.Json.JsonProperty("list")]
|
|
public List<Server> List;
|
|
}
|
|
}
|