Files
parr_api/PARR.TemplateGeneratorWorker/Settings/MqSettings.cs
2025-08-20 15:25:26 +10:00

14 lines
444 B
C#

using PARR.BLL.Contracts.Interfaces;
namespace PARR.TemplateGeneratorWorker.Settings
{
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;
}
}