28 lines
556 B
C#
28 lines
556 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace v2rayN.Mode
|
|
{
|
|
[Serializable]
|
|
public class RulesItem
|
|
{
|
|
public string type { get; set; }
|
|
|
|
public string port { 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 bool enabled { get; set; } = true;
|
|
|
|
}
|
|
|
|
}
|