booking-microservices/src/BuildingBlocks/Core/IntegrationEventWrapper.cs
2022-06-17 01:44:05 +04:30

7 lines
215 B
C#

using BuildingBlocks.Core.Event;
namespace BuildingBlocks.Core;
public record IntegrationEventWrapper<TDomainEventType>(TDomainEventType DomainEvent) : IIntegrationEvent
where TDomainEventType : IDomainEvent;