using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayDonateitemsGetResponse.
///
public class AlipayDonateitemsGetResponse : AopResponse
{
///
/// 捐款金额
///
[XmlElement("amount")]
public string Amount { get; set; }
///
/// 捐款笔数
///
[XmlElement("count")]
public string Count { get; set; }
}
}