mirror of
https://github.com/2dust/v2rayN.git
synced 2025-11-06 07:22:53 +00:00
21 lines
639 B
C#
21 lines
639 B
C#
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; }
|
|
public bool IsActive { get; set; }
|
|
}
|