/
VFlov
/
NotificationService_1
Обзор
Документация
Войти
/
VFlov
/
NotificationService_1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Shared/NotificationService.Shared/DTOs/SendNotificationRequest.cs
15 строк
505 B
VFlov
first_commit
27 ноя 2025, 11:43
27 ноя 2025, 11:43
819df67
Код
Авторство
О чём код?
using NotificationService.Shared.Models; namespace NotificationService.Shared.DTOs; /// <summary> /// DTO для запроса отправки уведомления /// </summary> public class SendNotificationRequest { 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 Dictionary<string, string>? Metadata { get; set; } }