// Copyright © WireMock.Net using JetBrains.Annotations; namespace WireMock.Settings; /// /// WebProxySettings /// public class WebProxySettings { /// /// A string instance that contains the address of the proxy server. /// [PublicAPI] public string Address { get; set; } = null!; /// /// The username associated with the credentials. /// [PublicAPI] public string? UserName { get; set; } /// /// The password for the username associated with the credentials. /// [PublicAPI] public string? Password { get; set; } }