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