namespace cmonitor.hijack { public sealed class HijackConfig { public HijackConfig() { } /// /// 进程白名单 /// public string[] AllowProcesss { get; set; } = Array.Empty(); /// /// 进程黑名单 /// public string[] DeniedProcesss { get; set; } = Array.Empty(); /// /// 域名白名单 /// public string[] AllowDomains { get; set; } = Array.Empty(); /// /// 域名黑名单 /// public string[] DeniedDomains { get; set; } = Array.Empty(); /// /// ip白名单 /// public string[] AllowIPs { get; set; } = Array.Empty(); /// /// ip黑名单 /// public string[] DeniedIPs { get; set; } = Array.Empty(); } }