mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-01 12:32:10 +00:00
23 lines
No EOL
687 B
C#
23 lines
No EOL
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; }
|
|
}
|
|
} |