14 lines
365 B
C#
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; }
|
|
}
|
|
}
|