Files
components/LiteCharms.Features/Abstractions/IEvent.cs
T
2026-05-13 20:06:24 +02:00

13 lines
233 B
C#

namespace LiteCharms.Features.Abstractions;
public interface IEvent : INotification
{
Guid Id { get; set; }
string Name { get; set; }
DateTimeOffset EnqueueAt { get; set; }
string CorrelationId { get; set; }
}