проекты

This commit is contained in:
Mikhail Trubnikov
2023-09-20 16:51:29 +10:00
parent bdf160a98e
commit d50cb20c95
10 changed files with 121 additions and 12 deletions

View File

@@ -1,4 +1,6 @@
namespace PARR.API.Settings
using PARR.BLL.Contracts.Interfaces;
namespace PARR.API.Settings
{
public class MqSettings
{
@@ -12,12 +14,4 @@
public string User { get; set; } = string.Empty;
public string Password { get; set; } = string.Empty;
}
public interface IMqSettings
{
string HostName { get; set; }
string QueueName { get; set; }
string User { get; set; }
string Password { get; set; }
}
}