22 lines
536 B
C#
22 lines
536 B
C#
namespace Nop.Core.Domain.Blogs
|
|
{
|
|
/// <summary>
|
|
/// Blog post comment approved event
|
|
/// </summary>
|
|
public class BlogCommentApprovedEvent
|
|
{
|
|
/// <summary>
|
|
/// Ctor
|
|
/// </summary>
|
|
/// <param name="blogComment">Blog comment</param>
|
|
public BlogCommentApprovedEvent(BlogComment blogComment)
|
|
{
|
|
BlogComment = blogComment;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Blog post comment
|
|
/// </summary>
|
|
public BlogComment BlogComment { get; }
|
|
}
|
|
} |