Files
parr_api/PARR.AIHITMainLoader/Settings/MqSettings.cs

18 lines
442 B
C#

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