Files
2dust_v2rayN/v2rayN/ServiceLib/Models/ServerTestItem.cs
T
2024-08-19 18:15:54 +08:00

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; }
}
}