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

14 lines
434 B
C#

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