v2rayN/v2rayN/ServiceLib/Models/ServerTestItem.cs

13 lines
360 B
C#
Raw Normal View History

2024-08-19 10:15:54 +00:00
namespace ServiceLib.Models
2022-01-28 13:05:41 +00:00
{
[Serializable]
2024-08-19 10:15:54 +00:00
public class ServerTestItem
2022-01-28 13:05:41 +00:00
{
2024-10-08 01:50:03 +00:00
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; }
2022-01-28 13:05:41 +00:00
}
2023-04-14 12:49:36 +00:00
}