Files
parr_api/PARR.BLL/Domain/Mq/MqQueueCountResult.cs

17 lines
403 B
C#

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