Webiant Logo Webiant Logo
  1. No results found.

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

NewsCommentApprovedEvent.cs

namespace Nop.Core.Domain.News;

/// <summary>
/// News comment approved event
/// </summary>
public partial class NewsCommentApprovedEvent
{
    /// <summary>
    /// Ctor
    /// </summary>
    /// <param name="newsComment">News comment</param>
    public NewsCommentApprovedEvent(NewsComment newsComment)
    {
        NewsComment = newsComment;
    }

    /// <summary>
    /// News comment
    /// </summary>
    public NewsComment NewsComment { get; }
}