booking-microservices/src/BuildingBlocks/Core/IntegrationEventWrapper.cs
2025-07-23 16:18:05 +03:30

6 lines
214 B
C#

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