12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace DllEapEntity.OFILM
- {
- /// <summary>
- /// RabbitMQ Queue信息
- /// </summary>
- public class RabbitMQQueueDetail
- {
- public bool auto_delete { get; set; }
- public int consumers { get; set; }
- public int messages { get; set; }
- public int messages_paged_out { get; set; }
- public int messages_ready { get; set; }
- public int messages_unacknowledged { get; set; }
- public string name { get; set; }
- public string node { get; set; }
- public string state { get; set; }
- public string type { get; set; }
- }
- public class RabbitQueueInfo
- {
- public int filtered_count { get; set; }
- public int item_count { get; set; }
- public IEnumerable<RabbitMQQueueDetail> items { get; set; }
- public int page { get; set; }
- public int page_count { get; set; }
- public int page_size { get; set; }
- public int total_count { get; set; }
- }
- }
|