2025-08-14 15:20:04 +10:00
|
|
|
|
using PARR.BLL.Contracts.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.TemplateGeneratorWorker.Settings
|
|
|
|
|
|
{
|
2025-08-20 15:25:26 +10:00
|
|
|
|
public class MqSettings : IMqSettings
|
2025-08-14 15:20:04 +10:00
|
|
|
|
{
|
|
|
|
|
|
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;
|
2025-08-20 15:25:26 +10:00
|
|
|
|
public ushort? PrefetchCount { get; set; } = 0;
|
2025-08-14 15:20:04 +10:00
|
|
|
|
}
|
|
|
|
|
|
}
|