mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-02-20 15:58:11 +01:00
23 lines
606 B
C#
23 lines
606 B
C#
namespace WireMock.Admin.Settings;
|
|
|
|
/// <summary>
|
|
/// WebProxySettings
|
|
/// </summary>
|
|
[FluentBuilder.AutoGenerateBuilder]
|
|
public class WebProxySettingsModel
|
|
{
|
|
/// <summary>
|
|
/// A string instance that contains the address of the proxy server.
|
|
/// </summary>
|
|
public string Address { get; set; } = null!;
|
|
|
|
/// <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; }
|
|
} |