mirror of
https://github.com/meysamhadeli/booking-microservices.git
synced 2026-04-12 11:32:10 +08:00
13 lines
276 B
C#
13 lines
276 B
C#
using MediatR;
|
|
|
|
namespace BuildingBlocks.Core.Event;
|
|
|
|
using global::MassTransit;
|
|
|
|
public interface IEvent : INotification
|
|
{
|
|
Guid EventId => NewId.NextGuid();
|
|
public DateTime OccurredOn => DateTime.Now;
|
|
public string EventType => GetType().AssemblyQualifiedName;
|
|
}
|