mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-16 16:36:46 +01:00
* Add TIOBE + include SonarAnalyzer.CSharp * . * cp * Copyright © WireMock.Net * more fixes * fix * xpath * if (Matchers == null || !Matchers.Any()) * if (Matchers != null) * ? * . * .
25 lines
651 B
C#
25 lines
651 B
C#
// Copyright © WireMock.Net
|
|
|
|
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; } = null!;
|
|
|
|
/// <summary>
|
|
/// The user name associated with the credentials. [optional]
|
|
/// </summary>
|
|
public string? UserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// The password for the user name associated with the credentials. [optional]
|
|
/// </summary>
|
|
public string? Password { get; set; }
|
|
} |