mirror of
https://github.com/2dust/v2rayN.git
synced 2026-03-27 02:39:57 +05:00
15 lines
408 B
C#
15 lines
408 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; }
|
|
public ProfileItem Profile { get; set; }
|
|
public ECoreType CoreType { get; set; }
|
|
}
|