Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Core.Domain;
///
/// Store information settings
///
public partial class StoreInformationSettings : ISettings
{
///
/// Gets or sets a value indicating whether "powered by nopCommerce" text should be displayed.
/// Please find more info at https://www.nopcommerce.com/nopcommerce-copyright-removal-key
///
public bool HidePoweredByNopCommerce { get; set; }
///
/// Gets or sets a value indicating whether store is closed
///
public bool StoreClosed { get; set; }
///
/// Gets or sets a picture identifier of the logo. If 0, then the default one will be used
///
public int LogoPictureId { get; set; }
///
/// Gets or sets a default store theme
///
public string DefaultStoreTheme { get; set; }
///
/// Gets or sets a value indicating whether customers are allowed to select a theme
///
public bool AllowCustomerToSelectTheme { get; set; }
///
/// Gets or sets a value indicating whether we should display warnings about the new EU cookie law
///
public bool DisplayEuCookieLawWarning { get; set; }
///
/// Gets or sets a value of Facebook page URL of the site
///
public string FacebookLink { get; set; }
///
/// Gets or sets a value of Twitter page URL of the site
///
public string TwitterLink { get; set; }
///
/// Gets or sets a value of YouTube channel URL of the site
///
public string YoutubeLink { get; set; }
///
/// Gets or sets a value of Instagram account URL of the site
///
public string InstagramLink { get; set; }
}