mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
23 lines
687 B
C#
23 lines
687 B
C#
using SQLite;
|
|
|
|
namespace ServiceLib.Models
|
|
{
|
|
[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 customRulesetPath4Singbox { get; set; }
|
|
public string domainStrategy { get; set; }
|
|
public string domainStrategy4Singbox { get; set; }
|
|
public int sort { get; set; }
|
|
}
|
|
} |