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