14 lines
290 B
C#
14 lines
290 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; }
|
|
}
|
|
} |