mirror of
https://github.com/2dust/v2rayN.git
synced 2026-09-26 08:18:00 +03:00
15 lines
297 B
C#
15 lines
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; }
|
|
}
|
|
} |