using Nop.Core.Configuration; namespace Nop.Core.Domain.Common; /// /// Display default menu item settings /// public partial class DisplayDefaultFooterItemSettings : ISettings { /// /// Gets or sets a value indicating whether to display "sitemap" footer item /// public bool DisplaySitemapFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "contact us" footer item /// public bool DisplayContactUsFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "product search" footer item /// public bool DisplayProductSearchFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "news" footer item /// public bool DisplayNewsFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "blog" footer item /// public bool DisplayBlogFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "forums" footer item /// public bool DisplayForumsFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "recently viewed products" footer item /// public bool DisplayRecentlyViewedProductsFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "compare products" footer item /// public bool DisplayCompareProductsFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "new products" footer item /// public bool DisplayNewProductsFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "customer info" footer item /// public bool DisplayCustomerInfoFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "customer orders" footer item /// public bool DisplayCustomerOrdersFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "customer addresses" footer item /// public bool DisplayCustomerAddressesFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "shopping cart" footer item /// public bool DisplayShoppingCartFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "wishlist" footer item /// public bool DisplayWishlistFooterItem { get; set; } /// /// Gets or sets a value indicating whether to display "apply vendor account" footer item /// public bool DisplayApplyVendorAccountFooterItem { get; set; } }