mirror of
https://github.com/2dust/v2rayN.git
synced 2025-12-10 13:30:21 +05:00
26 lines
620 B
C#
26 lines
620 B
C#
namespace ServiceLib.Models
|
|
{
|
|
[Serializable]
|
|
public class RulesItem
|
|
{
|
|
public string id { get; set; }
|
|
public string? type { get; set; }
|
|
|
|
public string? port { get; set; }
|
|
public string? network { get; set; }
|
|
|
|
public List<string>? inboundTag { get; set; }
|
|
|
|
public string? outboundTag { get; set; }
|
|
|
|
public List<string>? ip { get; set; }
|
|
|
|
public List<string>? domain { get; set; }
|
|
|
|
public List<string>? protocol { get; set; }
|
|
|
|
public List<string>? process { get; set; }
|
|
|
|
public bool enabled { get; set; } = true;
|
|
}
|
|
} |