using JetBrains.Annotations;
namespace WireMock.Settings
{
///
/// WebProxySettings
///
public class WebProxySettings
{
///
/// A string instance that contains the address of the proxy server.
///
[PublicAPI]
public string Address { get; set; }
///
/// The user name associated with the credentials.
///
[PublicAPI]
public string UserName { get; set; }
///
/// The password for the user name associated with the credentials.
///
[PublicAPI]
public string Password { get; set; }
}
}