using MediatR; namespace Femto.Common.Infrastructure.Outbox; public interface IOutboxMessageHandler { Task Publish(TNotification notification, CancellationToken executionContextCancellationToken); }