2023-09-20 16:51:29 +10:00
|
|
|
|
using PARR.BLL.Contracts.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
namespace PARR.API.Settings
|
2023-09-20 15:27:13 +10:00
|
|
|
|
{
|
|
|
|
|
|
public class MqSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public MqGenerateTemplates GenerateTemplates { get; set; } = new MqGenerateTemplates();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public class MqGenerateTemplates : 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;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|