Files
netch/Netch/Servers/Shadowsocks/ShareModels/SSDJObject.cs
2021-08-31 11:48:49 +08:00

43 lines
869 B
C#

#nullable disable
using System.Collections.Generic;
namespace Netch.Servers
{
public class SSDJObject
{
/// <summary>
/// 机场名
/// </summary>
public string airport;
/// <summary>
/// 加密方式
/// </summary>
public string encryption;
/// <summary>
/// 密码
/// </summary>
public string password;
/// <summary>
/// 插件
/// </summary>
public string plugin;
/// <summary>
/// 插件参数
/// </summary>
public string plugin_options;
/// <summary>
/// 端口
/// </summary>
public ushort port;
/// <summary>
/// 服务器数组
/// </summary>
public List<SSDServerJObject> servers;
}
}