feat(templateUpdater): основная логика + cicd
This commit is contained in:
18
PARR.TemplateUpdater/Settings/MqSettings.cs
Normal file
18
PARR.TemplateUpdater/Settings/MqSettings.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using PARR.BLL.Contracts.Interfaces;
|
||||
|
||||
namespace PARR.TemplateUpdater.Settings
|
||||
{
|
||||
internal class MqSettings
|
||||
{
|
||||
public TemplatesUpdaterMq TemplatesUpdater { get; set; } = new TemplatesUpdaterMq();
|
||||
}
|
||||
|
||||
internal class TemplatesUpdaterMq : 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;
|
||||
public ushort? PrefetchCount { get; set; } = 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user