v2rayN/v2rayN/ServiceLib/Models/ProfileExItem.cs

15 lines
297 B
C#
Raw Normal View History

using SQLite;
2024-08-19 10:15:54 +00:00
namespace ServiceLib.Models
{
[Serializable]
public class ProfileExItem
{
[PrimaryKey]
public string indexId { get; set; }
2023-04-14 12:49:36 +00:00
public int delay { get; set; }
public decimal speed { get; set; }
public int sort { get; set; }
}
2023-04-14 12:49:36 +00:00
}