/
VFlov
/
NotificationService_1
Обзор
Документация
Войти
/
VFlov
/
NotificationService_1
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/Shared/NotificationService.Shared/Configuration/RabbitMQSettings.cs
11 строк
333 B
VFlov
first_commit
27 ноя 2025, 11:43
27 ноя 2025, 11:43
819df67
Код
Авторство
О чём код?
namespace NotificationService.Shared.Configuration; /// <summary> /// Настройки RabbitMQ /// </summary> public class RabbitMQSettings { public string ConnectionString { get; set; } = "amqp://guest:guest@localhost:5672"; public int RetryCount { get; set; } = 3; public int RetryDelaySeconds { get; set; } = 5; }