Files
parr_api/PARR.BLL/Contracts/Interfaces/IMqSettings.cs
Mikhail Trubnikov d50cb20c95 проекты
2023-09-20 16:51:29 +10:00

14 lines
365 B
C#

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; }
}
}