mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-15 13:51:09 +08:00
6 lines
148 B
C#
6 lines
148 B
C#
using BuildingBlocks.Core.Event;
|
|
|
|
namespace BuildingBlocks.Contracts.EventBus.Messages;
|
|
|
|
public record BookingCreated(Guid Id) : IIntegrationEvent;
|