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