mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 12:15:46 +08:00
7 lines
225 B
C#
7 lines
225 B
C#
using BuildingBlocks.Core.Event;
|
|
|
|
namespace BuildingBlocks.Contracts.EventBus.Messages;
|
|
|
|
public record PassengerRegistrationCompleted(Guid Id) : IIntegrationEvent;
|
|
public record PassengerCreated(Guid Id) : IIntegrationEvent;
|