mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-13 04:06:07 +08:00
11 lines
202 B
C#
11 lines
202 B
C#
using BuildingBlocks.Core.CQRS;
|
|
|
|
namespace BuildingBlocks.Core.Event;
|
|
|
|
public interface IInternalCommand : ICommand
|
|
{
|
|
long Id { get; }
|
|
DateTime OccurredOn { get; }
|
|
string Type { get; }
|
|
}
|