Webiant Logo Webiant Logo
  1. No results found.

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

ProductReviewHelpfulness.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Represents a product review helpfulness
/// 
public partial class ProductReviewHelpfulness : BaseEntity
{
    /// 
    /// Gets or sets the product review identifier
    /// 
    public int ProductReviewId { get; set; }

    /// 
    /// A value indicating whether a review a helpful
    /// 
    public bool WasHelpful { get; set; }

    /// 
    /// Gets or sets the customer identifier
    /// 
    public int CustomerId { get; set; }
}