Webiant Logo Webiant Logo
  1. No results found.

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

ProductReview.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a product review
/// 
public partial class ProductReview : BaseEntity
{
    /// 
    /// Gets or sets the customer identifier
    /// 
    public int CustomerId { get; set; }

    /// 
    /// Gets or sets the product identifier
    /// 
    public int ProductId { get; set; }

    /// 
    /// Gets or sets the store identifier
    /// 
    public int StoreId { get; set; }

    /// 
    /// Gets or sets a value indicating whether the content is approved
    /// 
    public bool IsApproved { get; set; }

    /// 
    /// Gets or sets the title
    /// 
    public string Title { get; set; }

    /// 
    /// Gets or sets the review text
    /// 
    public string ReviewText { get; set; }

    /// 
    /// Gets or sets the reply text
    /// 
    public string ReplyText { get; set; }

    /// 
    /// Gets or sets the value indicating whether the customer is already notified of the reply to review
    /// 
    public bool CustomerNotifiedOfReply { get; set; }

    /// 
    /// Review rating
    /// 
    public int Rating { get; set; }

    /// 
    /// Review helpful votes total
    /// 
    public int HelpfulYesTotal { get; set; }

    /// 
    /// Review not helpful votes total
    /// 
    public int HelpfulNoTotal { get; set; }

    /// 
    /// Gets or sets the date and time of instance creation
    /// 
    public DateTime CreatedOnUtc { get; set; }
}