mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-17 08:56:51 +01:00
* refactor * rename api * -preview-01 * logger * move * RandomDataGenerator.Net * . * ISettings * renames... * refactor CommandlineParser logic * remove standalone * Remove Interfaces * Update tests * WireMock.Net.StandAlone * . * fix * . * _settings * Admin * WireMock.Net.Abstractions * fix build * rename WireMockServer * fix compile errors
23 lines
629 B
C#
23 lines
629 B
C#
namespace WireMock.Admin.Mappings
|
|
{
|
|
/// <summary>
|
|
/// WebProxy settings
|
|
/// </summary>
|
|
public class WebProxyModel
|
|
{
|
|
/// <summary>
|
|
/// A string instance that contains the address of the proxy server.
|
|
/// </summary>
|
|
public string Address { get; set; }
|
|
|
|
/// <summary>
|
|
/// The user name associated with the credentials.
|
|
/// </summary>
|
|
public string UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// The password for the user name associated with the credentials.
|
|
/// </summary>
|
|
public string Password { get; set; }
|
|
}
|
|
} |