/
VFlov
/
NotificationService_1
Обзор
Документация
Войти
/
VFlov
/
NotificationService_1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Shared/NotificationService.Shared/Models/NotificationRecord.cs
20 строк
723 B
VFlov
first_commit
27 ноя 2025, 11:43
27 ноя 2025, 11:43
819df67
Код
Авторство
О чём код?
namespace NotificationService.Shared.Models; /// <summary> /// Запись уведомления в БД /// </summary> public class NotificationRecord { public Guid Id { get; set; } public NotificationType Type { get; set; } public string Recipient { get; set; } = string.Empty; public string Subject { get; set; } = string.Empty; public string Content { get; set; } = string.Empty; public NotificationStatus Status { get; set; } public DateTime CreatedAt { get; set; } public DateTime? SentAt { get; set; } public DateTime? UpdatedAt { get; set; } public int RetryCount { get; set; } public string? ErrorMessage { get; set; } public string? MetadataJson { get; set; } }