8 lines
No EOL
219 B
C#
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);
|
|
} |