2025-04-02 03:44:23 +00:00
|
|
|
namespace ServiceLib.Models;
|
|
|
|
|
|
|
|
|
|
[Serializable]
|
|
|
|
|
public class ServerTestItem
|
2022-01-28 13:05:41 +00:00
|
|
|
{
|
2025-04-02 03:44:23 +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; }
|
2026-03-02 14:46:57 +00:00
|
|
|
public bool NeedAutoFillRemarks { get; set; }
|
2025-04-02 03:44:23 +00:00
|
|
|
public int QueueNum { get; set; }
|
2026-03-10 09:19:21 +00:00
|
|
|
public ProfileItem Profile { get; set; }
|
2026-03-01 08:11:40 +00:00
|
|
|
public ECoreType CoreType { get; set; }
|
2025-02-13 11:46:51 +00:00
|
|
|
}
|