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

13 lines
346 B
C#

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