Files
WireMock.Net/src/WireMock.Net.Abstractions/Admin/Mappings/WebProxyModel.cs
2021-08-04 15:40:35 +02:00

24 lines
669 B
C#

namespace WireMock.Admin.Mappings
{
/// <summary>
/// WebProxy settings
/// </summary>
[FluentBuilder.AutoGenerateBuilder]
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; }
}
}