mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 21:52:25 +00:00
18 lines
No EOL
455 B
C#
18 lines
No EOL
455 B
C#
namespace ServiceLib.Models
|
|
{
|
|
public class SsSIP008
|
|
{
|
|
public List<SsServer>? servers { get; set; }
|
|
}
|
|
|
|
[Serializable]
|
|
public class SsServer
|
|
{
|
|
public string? remarks { get; set; }
|
|
public string? server { get; set; }
|
|
public string? server_port { get; set; }
|
|
public string? method { get; set; }
|
|
public string? password { get; set; }
|
|
public string? plugin { get; set; }
|
|
}
|
|
} |