SzkoleniaRiskoff/src/Libraries/Nop.Core/Domain/Blogs/Events.cs

21 lines
470 B
C#
Raw Normal View History

2024-08-21 06:17:23 -04:00
namespace Nop.Core.Domain.Blogs;
/// <summary>
/// Blog post comment approved event
/// </summary>
public partial 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; }
}