/
VFlov
/
NotificationService_1
Обзор
Документация
Войти
/
VFlov
/
NotificationService_1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Shared/NotificationService.Shared/DTOs/SendNotificationResponse.cs
11 строк
302 B
VFlov
first_commit
27 ноя 2025, 11:43
27 ноя 2025, 11:43
819df67
Код
Авторство
О чём код?
namespace NotificationService.Shared.DTOs; /// <summary> /// DTO для ответа на запрос отправки /// </summary> public class SendNotificationResponse { public Guid NotificationId { get; set; } public bool Success { get; set; } public string? Message { get; set; } }