namespace Nop.Core.Domain.Blogs
{
///
/// Blog post comment approved event
///
public class BlogCommentApprovedEvent
{
///
/// Ctor
///
/// Blog comment
public BlogCommentApprovedEvent(BlogComment blogComment)
{
BlogComment = blogComment;
}
///
/// Blog post comment
///
public BlogComment BlogComment { get; }
}
}