Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ForumPostVote.cs

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; }
}