12 lines
235 B
C#
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; }
|
|
} |