fix(templateTaskGenerator): изменена папка проекта
This commit is contained in:
30
PARR.TemplateTaskGenerator/Settings/MqSettings.cs
Normal file
30
PARR.TemplateTaskGenerator/Settings/MqSettings.cs
Normal file
@@ -0,0 +1,30 @@
|
||||
using PARR.BLL.Contracts.Interfaces;
|
||||
|
||||
namespace PARR.TemplateTaskGenerator.Settings
|
||||
{
|
||||
internal class MqSettings
|
||||
{
|
||||
public TemplateTaskGenerator TemplateTaskGenerator { get; set; } = new TemplateTaskGenerator();
|
||||
public TemplateGeneratorWorker TemplateGeneratorWorker { get; set; } = new TemplateGeneratorWorker();
|
||||
}
|
||||
|
||||
|
||||
internal class TemplateTaskGenerator : 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;
|
||||
}
|
||||
|
||||
|
||||
internal class TemplateGeneratorWorker : 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