mirror of
https://github.com/2dust/v2rayN.git
synced 2026-05-18 23:54:49 +03:00
12 lines
296 B
C#
12 lines
296 B
C#
namespace ServiceLib.Models;
|
|
|
|
[Serializable]
|
|
public class RulesItemModel : RulesItem
|
|
{
|
|
public string InboundTags { get; set; }
|
|
public string Ips { get; set; }
|
|
public string Domains { get; set; }
|
|
public string Protocols { get; set; }
|
|
public string RuleTypeName { get; set; }
|
|
}
|