Domain Events
Domain Events are an integral part of Domain-Driven Design and are used to communicate changes and trigger side-effects within the domain model.
/// <summary>
/// Domain event interface
/// </summary>
public interface IDomainEvent
{
/// <summary>
/// Unique event identifier
/// </summary>
public Guid Id { get; }
}Last updated