mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-11 13:59:42 +05:00
13 lines
360 B
C#
13 lines
360 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; }
|
|
}
|
|
} |