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