Webiant Logo Webiant Logo
  1. No results found.

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

Events.cs

namespace Nop.Core.Domain.Catalog;

/// 
/// Product review approved event
/// 
public partial class ProductReviewApprovedEvent
{
    /// 
    /// Ctor
    /// 
    /// Product review
    public ProductReviewApprovedEvent(ProductReview productReview)
    {
        ProductReview = productReview;
    }

    /// 
    /// Product review
    /// 
    public ProductReview ProductReview { get; }
}