v2rayN/v2rayN/ServiceLib/Models/ProfileExItem.cs
2024-08-19 18:15:54 +08:00

15 lines
No EOL
297 B
C#

using SQLite;
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; }
}
}