Added outgoing email notification processing event

This commit is contained in:
Khwezi Mngoma
2026-05-10 16:07:53 +02:00
parent e8e9a85c57
commit 73ba41beaf
6 changed files with 102 additions and 5 deletions
+12
View File
@@ -0,0 +1,12 @@
using static LiteCharms.Abstractions.Timezones;
namespace LiteCharms.Abstractions;
public abstract class EventBase
{
public Guid Id { get; set; } = Guid.CreateVersion7();
public DateTimeOffset EnqueueAt { get; set; } = SouthAfricanTimeZone.UtcNow();
public string CorrelationId { get; set; } = Guid.CreateVersion7().ToString();
}