Files
components/LiteCharms.Features.TechShop/Notifications/Models/Notification.cs
T
Khwezi Mngoma 70c6e0bfbc
continuous-integration/drone/pr Build is passing
Split Features to create space for more projects
2026-05-24 13:19:09 +02:00

45 lines
1008 B
C#

using LiteCharms.Features.TechShop;
namespace LiteCharms.Features.TechShop.Notifications.Models;
public class Notification
{
public Guid Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public NotificationDirection Direction { get; set; }
public NotificationPlatforms Platform { get; set; }
public Priorities Priority { get; set; }
public CorrelationIdTypes CorrelationIdType { get; set; }
public string? SenderAddress { get; set; }
public string? SenderName { get; set; }
public string? Subject { get; set; }
public string? Message { get; set; }
public string? RecipientName { get; set; }
public string? RecipientAddress { get; set; }
public string? CorrelationId { get; set; }
public bool IsHtml { get; set; }
public bool IsInternal { get; set; }
public bool Processed { get; set; }
public bool HasError { get; set; }
public string[]? Errors { get; set; }
}