femto-backend/Femto.Common/Integration/Event.cs
2025-05-17 23:47:19 +02:00

6 lines
No EOL
136 B
C#

namespace Femto.Common.Integration;
public abstract record Event : IEvent
{
public Guid EventId { get; } = Guid.CreateVersion7();
}