7 lines
No EOL
175 B
C#
7 lines
No EOL
175 B
C#
namespace Femto.Common.Infrastructure.Outbox;
|
|
|
|
public interface IOutboxMessageMapping
|
|
{
|
|
Type? GetTypeOfEvent(string eventName);
|
|
string? GetEventName(Type eventType);
|
|
} |