FireflySR.Tool.Proxy/ProxyConfig.cs

11 lines
410 B
C#
Raw 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; } = [];
public required string DestinationHost { get; set; }
public required int DestinationPort { get; set; }
public int ProxyBindPort { get; set; }
}