femto-backend/Femto.Common/Infrastructure/Outbox/IOutboxMessageMapping.cs

7 lines
No EOL
175 B
C#

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