Files
parr_api/PARR.GeneratorTemplates/Settings/MqSettings.cs
Mikhail Trubnikov c7acfd153d Mq Consumer
2023-09-21 15:21:33 +10:00

13 lines
385 B
C#

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