feat(esppOrderManager): получение сообщений из Rabbit.

This commit is contained in:
Mikhail Trubnikov
2023-10-24 11:29:55 +10:00
parent 50e165bdc3
commit 7991121f07
9 changed files with 101 additions and 15 deletions

View File

@@ -0,0 +1,12 @@
using PARR.BLL.Contracts.Interfaces;
namespace PARR.EsppOrderManager.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;
}
}