FireflySR.Tool.Proxy/ProxyConfig.cs

13 lines
468 B
C#
Raw Permalink Normal View History

2024-05-22 14:45:22 +00:00
namespace FireflySR.Tool.Proxy;
public class ProxyConfig
{
public List<string> RedirectDomains { get; set; } = [];
public List<string> AlwaysIgnoreDomains { get; set; } = [];
public List<string> ForceRedirectOnUrlContains { get; set; } = [];
2024-05-22 15:49:10 +00:00
public HashSet<string> BlockUrls { get; set; } = [];
2024-05-22 14:45:22 +00:00
public required string DestinationHost { get; set; }
public required int DestinationPort { get; set; }
public int ProxyBindPort { get; set; }
2024-05-22 15:49:10 +00:00
}