mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-28 08:50:23 +08:00
12 lines
294 B
C#
12 lines
294 B
C#
using BuildingBlocks.IdsGenerator;
|
|
using MediatR;
|
|
|
|
namespace BuildingBlocks.Core.Event;
|
|
|
|
public interface IEvent : INotification
|
|
{
|
|
long EventId => SnowFlakIdGenerator.NewId();
|
|
public DateTime OccurredOn => DateTime.Now;
|
|
public string EventType => GetType().AssemblyQualifiedName;
|
|
}
|