using Nop.Core.Domain.Seo; using Nop.Core.Domain.Stores; namespace Nop.Core.Domain.Blogs; /// /// Represents a blog post /// public partial class BlogPost : BaseEntity, ISlugSupported, IStoreMappingSupported { /// /// Gets or sets the language identifier /// public int LanguageId { get; set; } /// /// Gets or sets the value indicating whether this blog post should be included in sitemap /// public bool IncludeInSitemap { get; set; } /// /// Gets or sets the blog post title /// public string Title { get; set; } /// /// Gets or sets the blog post body /// public string Body { get; set; } /// /// Gets or sets the blog post overview. If specified, then it's used on the blog page instead of the "Body" /// public string BodyOverview { get; set; } /// /// Gets or sets a value indicating whether the blog post comments are allowed /// public bool AllowComments { get; set; } /// /// Gets or sets the blog tags /// public string Tags { get; set; } /// /// Gets or sets the blog post start date and time /// public DateTime? StartDateUtc { get; set; } /// /// Gets or sets the blog post end date and time /// public DateTime? EndDateUtc { get; set; } /// /// Gets or sets the meta keywords /// public string MetaKeywords { get; set; } /// /// Gets or sets the meta description /// public string MetaDescription { get; set; } /// /// Gets or sets the meta title /// public string MetaTitle { get; set; } /// /// Gets or sets a value indicating whether the entity is limited/restricted to certain stores /// public virtual bool LimitedToStores { get; set; } /// /// Gets or sets the date and time of entity creation /// public DateTime CreatedOnUtc { get; set; } }