booking-microservices/src/BuildingBlocks/Core/IntegrationEventWrapper.cs
2025-07-03 23:22:26 +03:30

7 lines
215 B
C#

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