namespace Nop.Core.Domain.Forums; /// /// Represents a forum subscription item /// public partial class ForumSubscription : BaseEntity { /// /// Gets or sets the forum subscription identifier /// public Guid SubscriptionGuid { get; set; } /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets the forum identifier /// public int ForumId { get; set; } /// /// Gets or sets the topic identifier /// public int TopicId { get; set; } /// /// Gets or sets the date and time of instance creation /// public DateTime CreatedOnUtc { get; set; } }