feat(templateActivator): Методы чтения MQ, обновления состояний шаблонов и расписаний, обновления заданий роботов

This commit is contained in:
Mikhail Kuznetsov
2024-07-25 17:23:08 +10:00
parent 7220bdd8af
commit 014c760225
13 changed files with 357 additions and 18 deletions

View File

@@ -0,0 +1,12 @@
using PARR.BLL.Contracts.Interfaces;
namespace PARR.TemplateActivator;
internal class MqSettings : IMqSettings
{
public string HostName { get; set; } = string.Empty;
public string QueueName { get; set; } = string.Empty;
public string User { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}