22 lines
802 B
C#
22 lines
802 B
C#
namespace Nop.Core.Configuration;
|
|
|
|
/// <summary>
|
|
/// Represents installation configuration parameters
|
|
/// </summary>
|
|
public partial class InstallationConfig : IConfig
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether a store owner can install sample data during installation
|
|
/// </summary>
|
|
public bool DisableSampleData { get; protected set; } = false;
|
|
|
|
/// <summary>
|
|
/// Gets or sets a list of plugins ignored during nopCommerce installation
|
|
/// </summary>
|
|
public string DisabledPlugins { get; protected set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether to download and setup the regional language pack during installation
|
|
/// </summary>
|
|
public bool InstallRegionalResources { get; protected set; } = true;
|
|
} |