namespace ServiceLib.Models.Entities; [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? InboundTag { get; set; } public string? OutboundTag { get; set; } public List? Ip { get; set; } public List? Domain { get; set; } public List? Protocol { get; set; } public List? Process { get; set; } public bool Enabled { get; set; } = true; public string? Remarks { get; set; } public ERuleType? RuleType { get; set; } }