Files
parr_api/PARR.BLL/Contracts/Interfaces/IMqSettings.cs

14 lines
365 B
C#
Raw Normal View History

2023-09-20 16:51:29 +10:00
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; }
}
}