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