mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-15 05:25:36 +08:00
6 lines
181 B
C#
6 lines
181 B
C#
using BuildingBlocks.Core.Event;
|
|
|
|
namespace BuildingBlocks.Contracts.EventBus.Messages;
|
|
|
|
public record UserCreated(Guid Id, string Name, string PassportNumber) : IIntegrationEvent;
|