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

22 lines
536 B
C#
Raw Normal View History

2024-08-21 10:09:17 -04:00
namespace Nop.Core.Domain.Blogs
2024-08-21 06:17:23 -04:00
{
/// <summary>
2024-08-21 10:09:17 -04:00
/// Blog post comment approved event
2024-08-21 06:17:23 -04:00
/// </summary>
2024-08-21 10:09:17 -04:00
public class BlogCommentApprovedEvent
2024-08-21 06:17:23 -04:00
{
2024-08-21 10:09:17 -04:00
/// <summary>
/// Ctor
/// </summary>
/// <param name="blogComment">Blog comment</param>
public BlogCommentApprovedEvent(BlogComment blogComment)
{
BlogComment = blogComment;
}
2024-08-21 06:17:23 -04:00
2024-08-21 10:09:17 -04:00
/// <summary>
/// Blog post comment
/// </summary>
public BlogComment BlogComment { get; }
}
2024-08-21 06:17:23 -04:00
}