using Nop.Core.Configuration;
namespace Nop.Core.Domain.Blogs;
///
/// Blog settings
///
public partial class BlogSettings : ISettings
{
///
/// Gets or sets a value indicating whether blog is enabled
///
public bool Enabled { get; set; }
///
/// Gets or sets the page size for posts
///
public int PostsPageSize { get; set; }
///
/// Gets or sets a value indicating whether not registered user can leave comments
///
public bool AllowNotRegisteredUsersToLeaveComments { get; set; }
///
/// Gets or sets a value indicating whether to notify about new blog comments
///
public bool NotifyAboutNewBlogComments { get; set; }
///
/// Gets or sets a number of blog tags that appear in the tag cloud
///
public int NumberOfTags { get; set; }
///
/// Enable the blog RSS feed link in customers browser address bar
///
public bool ShowHeaderRssUrl { get; set; }
///
/// Gets or sets a value indicating whether blog comments must be approved
///
public bool BlogCommentsMustBeApproved { get; set; }
///
/// Gets or sets a value indicating whether blog comments will be filtered per store
///
public bool ShowBlogCommentsPerStore { get; set; }
}