mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 00:03:48 +01:00
28 lines
712 B
C#
28 lines
712 B
C#
using JetBrains.Annotations;
|
|
|
|
namespace WireMock.Settings
|
|
{
|
|
/// <summary>
|
|
/// WebProxySettings
|
|
/// </summary>
|
|
public class WebProxySettings
|
|
{
|
|
/// <summary>
|
|
/// A string instance that contains the address of the proxy server.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public string Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// The user name associated with the credentials.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// The password for the user name associated with the credentials.
|
|
/// </summary>
|
|
[PublicAPI]
|
|
public string Password { get; set; }
|
|
}
|
|
} |