using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayCommerceCityfacilitatorDepositQueryResponse. /// public class AlipayCommerceCityfacilitatorDepositQueryResponse : AopResponse { /// /// 待圈存明细 /// [XmlArray("recharge_bills")] [XmlArrayItem("recharge_bill")] public List RechargeBills { get; set; } } }