2025-03-15 16:54:20 +03:30

10 lines
232 B
C#

using BuildingBlocks.Core.Event;
namespace BuildingBlocks.Core;
public interface IEventMapper
{
IIntegrationEvent? MapToIntegrationEvent(IDomainEvent @event);
IInternalCommand? MapToInternalCommand(IDomainEvent @event);
}