mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-25 14:54:06 +08:00
11 lines
246 B
C#
11 lines
246 B
C#
using MediatR;
|
|
|
|
namespace BuildingBlocks.Core.Event;
|
|
|
|
public interface IEvent : INotification
|
|
{
|
|
Guid EventId => Guid.NewGuid();
|
|
public DateTime OccurredOn => DateTime.Now;
|
|
public string EventType => GetType().AssemblyQualifiedName;
|
|
}
|