Files
pfm/PostFundManagement.Domain/Abstractions/IEvent.cs
T
hermes 32a80eb84d Implemented security functionality
Added data protection feature
Migrated changes
2026-08-20 15:15:54 +02:00

12 lines
235 B
C#

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