Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

INopConnectionStringInfo.cs

namespace Nop.Data;

/// 
/// Represents a connection string info
/// 
public partial interface INopConnectionStringInfo
{
    /// 
    /// DatabaseName
    /// 
    string DatabaseName { get; set; }

    /// 
    /// Server name or IP address
    /// 
    string ServerName { get; set; }

    /// 
    /// Integrated security
    /// 
    bool IntegratedSecurity { get; set; }

    /// 
    /// Username
    /// 
    string Username { get; set; }

    /// 
    /// Password
    /// 
    string Password { get; set; }
}