femto-backend/Femto.Modules.Blog/Handlers/PostCreatedIntegrationEventHandler.cs

12 lines
No EOL
328 B
C#

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