namespace Nop.Core.Domain.Forums; /// /// Represents a forum post vote /// public partial class ForumPostVote : BaseEntity { /// /// Gets or sets the forum post identifier /// public int ForumPostId { get; set; } /// /// Gets or sets the customer identifier /// public int CustomerId { get; set; } /// /// Gets or sets a value indicating whether this vote is up or is down /// public bool IsUp { get; set; } /// /// Gets or sets the date and time of instance creation /// public DateTime CreatedOnUtc { get; set; } }