mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-29 19:23:11 +00:00
15 lines
No EOL
297 B
C#
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; }
|
|
}
|
|
} |