Files
Archive/v2rayn/v2rayN/ServiceLib/Models/ServerTestItem.cs
T
2025-02-15 19:31:09 +01:00

14 lines
361 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 QueueNum { get; set; }
}
}