femto-backend/Femto.Modules.Blog/Handlers/PostCreatedIntegrationEventHandler.cs
2025-05-17 23:47:19 +02:00

12 lines
No EOL
306 B
C#

using Femto.Modules.Blog.Events;
using MediatR;
namespace Femto.Modules.Blog.Handlers;
public class PostCreatedIntegrationEventHandler : INotificationHandler<PostCreatedEvent>
{
public async Task Handle(PostCreatedEvent notification, CancellationToken cancellationToken)
{
// todo
}
}