13 lines
378 B
C#
13 lines
378 B
C#
using PARR.BLL.Contracts.Interfaces;
|
|
|
|
namespace PARR.AIHITLoader.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;
|
|
}
|
|
}
|