проекты

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

@@ -0,0 +1,13 @@
namespace PARR.BLL.Contracts.Interfaces
{
/// <summary>
/// Поля настроек MQ, используется для appsettings.json
/// </summary>
public interface IMqSettings
{
string HostName { get; set; }
string QueueName { get; set; }
string User { get; set; }
string Password { get; set; }
}
}