acc0d44c7c
Internal service bus support enabled Added quartz support Reconfigured extensions
13 lines
224 B
C#
13 lines
224 B
C#
namespace LiteCharms.Abstractions;
|
|
|
|
public interface IEvent : INotification
|
|
{
|
|
Guid Id { get; set; }
|
|
|
|
string Name { get; set; }
|
|
|
|
DateTimeOffset EnqueueAt { get; set; }
|
|
|
|
string CorrelationId { get; set; }
|
|
}
|