Files
v2rayN/v2rayN/v2rayN/Mode/ServerTestItem.cs
2023-01-01 19:42:01 +08:00

28 lines
447 B
C#

namespace v2rayN.Mode
{
[Serializable]
class ServerTestItem
{
public string indexId
{
get; set;
}
public string address
{
get; set;
}
public int port
{
get; set;
}
public EConfigType configType
{
get; set;
}
public bool allowTest
{
get; set;
}
}
}