Try your search with a different keyword or use * as a wildcard.
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; }
}