mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 16:38:40 +03:00
13 lines
358 B
C#
13 lines
358 B
C#
namespace ServiceLib.Models
|
|
{
|
|
[Serializable]
|
|
public 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; }
|
|
public int delay { get; set; }
|
|
}
|
|
} |