using Nop.Core.Configuration; namespace Nop.Core.Domain.Common; /// /// Sitemap settings /// public partial class SitemapSettings : ISettings { /// /// Gets or sets a value indicating whether sitemap is enabled /// public bool SitemapEnabled { get; set; } /// /// Gets or sets the page size for sitemap /// public int SitemapPageSize { get; set; } /// /// Gets or sets a value indicating whether to include blog posts to sitemap /// public bool SitemapIncludeBlogPosts { get; set; } /// /// Gets or sets a value indicating whether to include categories to sitemap /// public bool SitemapIncludeCategories { get; set; } /// /// Gets or sets a value indicating whether to include manufacturers to sitemap /// public bool SitemapIncludeManufacturers { get; set; } /// /// Gets or sets a value indicating whether to include news to sitemap /// public bool SitemapIncludeNews { get; set; } /// /// Gets or sets a value indicating whether to include products to sitemap /// public bool SitemapIncludeProducts { get; set; } /// /// Gets or sets a value indicating whether to include product tags to sitemap /// public bool SitemapIncludeProductTags { get; set; } /// /// Gets or sets a value indicating whether to include topics to sitemap /// public bool SitemapIncludeTopics { get; set; } }