namespace Nop.Core.Domain.News; /// /// News comment approved event /// public partial class NewsCommentApprovedEvent { /// /// Ctor /// /// News comment public NewsCommentApprovedEvent(NewsComment newsComment) { NewsComment = newsComment; } /// /// News comment /// public NewsComment NewsComment { get; } }