mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
10 lines
232 B
C#
10 lines
232 B
C#
using BuildingBlocks.Core.Event;
|
|
|
|
namespace BuildingBlocks.Core;
|
|
|
|
public interface IEventMapper
|
|
{
|
|
IIntegrationEvent? MapToIntegrationEvent(IDomainEvent @event);
|
|
IInternalCommand? MapToInternalCommand(IDomainEvent @event);
|
|
}
|