booking-microservices/BuildingBlocks/Core/IntegrationEventWrapper.cs
2025-03-15 01:39:43 +03:30

7 lines
215 B
C#

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