Files
parr_api/PARR.Master/Settings/MqSettings.cs
2023-10-24 12:14:22 +10:00

13 lines
373 B
C#

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