Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Configuration;
///
/// Represents installation configuration parameters
///
public partial class InstallationConfig : IConfig
{
///
/// Gets or sets a value indicating whether a store owner can install sample data during installation
///
public bool DisableSampleData { get; protected set; } = false;
///
/// Gets or sets a list of plugins ignored during nopCommerce installation
///
public string DisabledPlugins { get; protected set; } = string.Empty;
///
/// Gets or sets a value indicating whether to download and setup the regional language pack during installation
///
public bool InstallRegionalResources { get; protected set; } = true;
}