18 lines
375 B
C#
18 lines
375 B
C#
namespace Svrnty.CQRS.Events.Abstractions;
|
|
|
|
/// <summary>
|
|
/// Marker interface for domain events.
|
|
/// </summary>
|
|
public interface IDomainEvent
|
|
{
|
|
/// <summary>
|
|
/// Unique identifier for this event instance.
|
|
/// </summary>
|
|
Guid EventId { get; }
|
|
|
|
/// <summary>
|
|
/// Timestamp when the event occurred.
|
|
/// </summary>
|
|
DateTime OccurredAt { get; }
|
|
}
|