namespace Femto.Common.Infrastructure.Outbox; public interface IOutboxMessageMapping { Type? GetTypeOfEvent(string eventName); string? GetEventName(Type eventType); }