Webiant Logo Webiant Logo
  1. No results found.

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

InstallationSettings.cs

using System.Globalization;

namespace Nop.Services.Installation;

/// 
/// Installation settings
/// 
public partial class InstallationSettings
{
    /// 
    /// Administration user email
    /// 
    public string AdminEmail { get; set; }

    /// 
    /// Administration user password
    /// 
    public string AdminPassword { get; set; }

    /// 
    /// Language pack info download link
    /// 
    public string LanguagePackDownloadLink { get; set; }

    /// 
    /// Language pack info translation progress
    /// 
    public int LanguagePackProgress { get; set; }

    /// 
    /// Region info
    /// 
    public RegionInfo RegionInfo { get; set; }

    /// 
    /// Culture info
    /// 
    public CultureInfo CultureInfo { get; set; }

    /// 
    /// Indicate if we need to install sample data
    /// 
    public bool InstallSampleData { get; set; }
}