mirror of
https://github.com/netchx/netch.git
synced 2026-03-14 17:43:18 +08:00
20 lines
431 B
C#
20 lines
431 B
C#
#nullable disable
|
|
namespace Netch.Servers.Shadowsocks.Models
|
|
{
|
|
public class ShadowsocksConfig
|
|
{
|
|
public string server { get; set; }
|
|
|
|
public ushort server_port { get; set; }
|
|
|
|
public string password { get; set; }
|
|
|
|
public string method { get; set; }
|
|
|
|
public string remarks { get; set; }
|
|
|
|
public string plugin { get; set; }
|
|
|
|
public string plugin_opts { get; set; }
|
|
}
|
|
} |