mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 13:42:24 +00:00
10 lines
251 B
C#
10 lines
251 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; }
|
|
}
|