using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// RechargeModel Data Structure.
///
[Serializable]
public class RechargeModel : AopObject
{
///
/// 号段
///
[XmlElement("mobile_no_segment")]
public string MobileNoSegment { get; set; }
///
/// 充送
///
[XmlElement("pay_send")]
public string PaySend { get; set; }
///
/// 销售产品
///
[XmlArray("sale_products")]
[XmlArrayItem("sale_product")]
public List SaleProducts { get; set; }
}
}