mirror of
https://github.com/netchx/netch.git
synced 2026-03-16 17:53:17 +08:00
13 lines
390 B
C#
13 lines
390 B
C#
namespace Netch.Models.SS
|
|
{
|
|
public class ShadowsocksServer
|
|
{
|
|
public string server { get; set; }
|
|
public int 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; }
|
|
}
|
|
} |