using Nop.Core.Domain.Localization; using Nop.Core.Domain.Security; using Nop.Core.Domain.Seo; using Nop.Core.Domain.Stores; namespace Nop.Core.Domain.Topics; /// /// Represents a topic /// public partial class Topic : BaseEntity, ILocalizedEntity, ISlugSupported, IStoreMappingSupported, IAclSupported { /// /// Gets or sets the name /// public string SystemName { get; set; } /// /// Gets or sets the value indicating whether this topic should be included in sitemap /// public bool IncludeInSitemap { get; set; } /// /// Gets or sets the value indicating whether this topic should be included in top menu /// public bool IncludeInTopMenu { get; set; } /// /// Gets or sets the value indicating whether this topic should be included in footer (column 1) /// public bool IncludeInFooterColumn1 { get; set; } /// /// Gets or sets the value indicating whether this topic should be included in footer (column 1) /// public bool IncludeInFooterColumn2 { get; set; } /// /// Gets or sets the value indicating whether this topic should be included in footer (column 1) /// public bool IncludeInFooterColumn3 { get; set; } /// /// Gets or sets the display order /// public int DisplayOrder { get; set; } /// /// Gets or sets the value indicating whether this topic is accessible when a store is closed /// public bool AccessibleWhenStoreClosed { get; set; } /// /// Gets or sets the value indicating whether this topic is password protected /// public bool IsPasswordProtected { get; set; } /// /// Gets or sets the password /// public string Password { get; set; } /// /// Gets or sets the title /// public string Title { get; set; } /// /// Gets or sets the body /// public string Body { get; set; } /// /// Gets or sets a value indicating whether the entity is published /// public bool Published { get; set; } /// /// Gets or sets a value of used topic template identifier /// public int TopicTemplateId { 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 subject to ACL /// public bool SubjectToAcl { get; set; } /// /// Gets or sets a value indicating whether the entity is limited/restricted to certain stores /// public bool LimitedToStores { get; set; } }