namespace PARR.BLL.Domain.Mq { /// /// Результат запроса кол-ва сообщений в очереди RabbitMq /// public class MqQueueCountResult { public bool IsSuccess { get;set; } public int Count { get; set; } public int ConsumerCount { get; set; } public Exception? Exception { get; set; } } }