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 Publish<TNotification>(TNotification notification, CancellationToken executionContextCancellationToken);
|
|
} |