mirror of
https://github.com/2dust/v2rayN.git
synced 2025-05-02 05:08:49 +00:00
22 lines
No EOL
620 B
C#
22 lines
No EOL
620 B
C#
using SQLite;
|
|
|
|
namespace v2rayN.Model
|
|
{
|
|
[Serializable]
|
|
public class RoutingItem
|
|
{
|
|
[PrimaryKey]
|
|
public string id { get; set; }
|
|
|
|
public string remarks { get; set; }
|
|
public string url { get; set; }
|
|
public string ruleSet { get; set; }
|
|
public int ruleNum { get; set; }
|
|
public bool enabled { get; set; } = true;
|
|
public bool locked { get; set; }
|
|
public string customIcon { get; set; }
|
|
public string domainStrategy { get; set; }
|
|
public string domainStrategy4Singbox { get; set; }
|
|
public int sort { get; set; }
|
|
}
|
|
} |