v2rayN/v2rayN/ServiceLib/Models/ServerTestItem.cs
DHR60 9f6237fb21
Speedtest respect user-set core type (#8856)
* Respect user-set core type

* Allow test group
2026-03-01 16:11:40 +08:00

14 lines
417 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 required ProfileItem Profile { get; set; }
public ECoreType CoreType { get; set; }
}