booking-microservices/building-blocks/Core/IntegrationEventWrapper.cs
2025-03-15 16:54:20 +03:30

7 lines
215 B
C#

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