v2rayN/v2rayN/ServiceLib/Models/ProfileExItem.cs
2025-10-19 11:42:32 +08:00

13 lines
283 B
C#

namespace ServiceLib.Models;
[Serializable]
public class ProfileExItem
{
[PrimaryKey]
public string IndexId { get; set; }
public int Delay { get; set; }
public decimal Speed { get; set; }
public int Sort { get; set; }
public string? Message { get; set; }
}