new-infofer-scraper/server/Models/ProxySettings.cs
2024-09-01 04:30:39 +02:00

9 lines
285 B
C#

namespace Server.Models;
public record ProxySettings(bool UseProxy, string Url, ProxyCredentials? Credentials = null) {
public ProxySettings() : this(false, "") { }
}
public record ProxyCredentials(string Username, string Password) {
public ProxyCredentials() : this("", "") { }
}