new-infofer-scraper/server/Models/ProxySettings.cs

10 lines
285 B
C#
Raw Permalink Normal View History

2024-09-01 03:45:00 +02:00
namespace Server.Models;
2024-09-01 04:30:39 +02:00
public record ProxySettings(bool UseProxy, string Url, ProxyCredentials? Credentials = null) {
public ProxySettings() : this(false, "") { }
2024-09-01 03:45:00 +02:00
}
public record ProxyCredentials(string Username, string Password) {
public ProxyCredentials() : this("", "") { }
}