namespace FireflySR.Tool.Proxy; public class ProxyConfig { public List RedirectDomains { get; set; } = []; public List AlwaysIgnoreDomains { get; set; } = []; public List ForceRedirectOnUrlContains { get; set; } = []; public HashSet BlockUrls { get; set; } = []; public required string DestinationHost { get; set; } public required int DestinationPort { get; set; } public int ProxyBindPort { get; set; } }