Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Core.Domain.Security;
/// 
/// Proxy settings
///  
public partial class ProxySettings : ISettings
{
    /// 
    /// Gets or sets a value indicating whether we should use proxy connection
    ///  
    public bool Enabled { get; set; }
    /// 
    /// Gets or sets the address of the proxy server
    ///  
    public string Address { get; set; }
    /// 
    /// Gets or sets the port of the proxy server
    ///  
    public string Port { get; set; }
    /// 
    /// Gets or sets the username for proxy connection
    ///  
    public string Username { get; set; }
    /// 
    /// Gets or sets the password for proxy connection
    ///  
    public string Password { get; set; }
    /// 
    /// Gets or sets a value that indicates whether to bypass the proxy server for local addresses
    ///  
    public bool BypassOnLocal { get; set; }
    /// 
    /// Gets or sets a value that indicates whether the handler sends an Authorization header with the request
    ///  
    public bool PreAuthenticate { get; set; }
}