Files
FictionArchive/FictionArchive.Service.Shared/Services/EventBus/IntegrationEvent.cs

9 lines
200 B
C#

using NodaTime;
namespace FictionArchive.Service.Shared.Services.EventBus;
public abstract class IntegrationEvent
{
public Guid EventId { get; set; }
public Instant CreatedAt { get; set; }
}