namespace WireMock.Admin.Mappings
{
///
/// WebProxy settings
///
public class WebProxyModel
{
///
/// A string instance that contains the address of the proxy server.
///
public string Address { get; set; }
///
/// 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; }
}
}