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.News;

/// 
/// News comment approved event
/// 
public partial class NewsCommentApprovedEvent
{
    /// 
    /// Ctor
    /// 
    /// News comment
    public NewsCommentApprovedEvent(NewsComment newsComment)
    {
        NewsComment = newsComment;
    }

    /// 
    /// News comment
    /// 
    public NewsComment NewsComment { get; }
}