using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// QueueInfoModify Data Structure.
///
[Serializable]
public class QueueInfoModify : AopObject
{
///
/// 队列ID
///
[XmlElement("queue_id")]
public string QueueId { get; set; }
///
/// 订单排队号
///
[XmlElement("queue_no")]
public string QueueNo { get; set; }
///
/// 当前等待人数
///
[XmlElement("queue_wait")]
public long QueueWait { get; set; }
///
/// 预计等待时间(单位:分钟)
///
[XmlElement("queue_wait_time")]
public long QueueWaitTime { get; set; }
}
}