mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 03:12:11 +08:00
10 lines
236 B
C#
10 lines
236 B
C#
using BuildingBlocks.Core.CQRS;
|
|
using BuildingBlocks.IdsGenerator;
|
|
|
|
namespace BuildingBlocks.Core.Event;
|
|
|
|
public class InternalCommand : IInternalCommand, ICommand
|
|
{
|
|
public long Id { get; init; } = SnowFlakIdGenerator.NewId();
|
|
}
|