9 lines
200 B
C#
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; }
|
|
} |