namespace HrynCo.NotificationService.Contracts.Messages; public record NotificationResultData { public required string ServiceName { get; init; } public required string RecipientEmail { get; init; } public required string TemplateKey { get; init; } public required DateTimeOffset Timestamp { get; init; } /// Null when delivery succeeded; contains error details on failure. public string? ErrorMessage { get; init; } public bool IsSuccess => ErrorMessage is null; }