v2rayN/v2rayN/ServiceLib/Models/RoutingItem.cs
2024-10-24 17:56:39 +08:00

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; }
}
}