femto-backend/Femto.Common/Infrastructure/Outbox/IOutboxMessageHandler.cs
2025-05-17 23:47:19 +02:00

8 lines
No EOL
219 B
C#

using MediatR;
namespace Femto.Common.Infrastructure.Outbox;
public interface IOutboxMessageHandler
{
Task HandleMessage<TNotification>(TNotification notification, CancellationToken cancellationToken = default);
}