fix(templateGeneratorWorker): MqSettings

This commit is contained in:
Mikhail Trubnikov
2025-08-20 15:25:26 +10:00
parent 01bd5b7b27
commit e59e72f6d6
3 changed files with 7 additions and 19 deletions

View File

@@ -2,11 +2,12 @@
namespace PARR.TemplateGeneratorWorker.Settings
{
public class MqSettings : IMqSettings//TODO почему-то только публик работает
public 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;
public ushort? PrefetchCount { get; set; } = 0;
}
}