21 lines
486 B
C#
21 lines
486 B
C#
namespace Nop.Core.Domain.Catalog;
|
|
|
|
/// <summary>
|
|
/// Product review approved event
|
|
/// </summary>
|
|
public partial class ProductReviewApprovedEvent
|
|
{
|
|
/// <summary>
|
|
/// Ctor
|
|
/// </summary>
|
|
/// <param name="productReview">Product review</param>
|
|
public ProductReviewApprovedEvent(ProductReview productReview)
|
|
{
|
|
ProductReview = productReview;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Product review
|
|
/// </summary>
|
|
public ProductReview ProductReview { get; }
|
|
} |