using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayEvercallRechargeResultUpdateResponse.
///
public class AlipayEvercallRechargeResultUpdateResponse : AopResponse
{
///
/// 充值同步结果
///
[XmlArray("recharge_results")]
[XmlArrayItem("evercall_recharge_result")]
public List RechargeResults { get; set; }
}
}