namespace WireMock.Admin.Settings;
///
/// WebProxySettings
///
[FluentBuilder.AutoGenerateBuilder]
public class WebProxySettingsModel
{
///
/// A string instance that contains the address of the proxy server.
///
public string Address { get; set; } = null!;
///
/// The user name associated with the credentials.
///
public string? UserName { get; set; }
///
/// The password for the user name associated with the credentials.
///
public string? Password { get; set; }
}