1234567891011121314151617181920212223 |
- using System;
- using System.Xml.Serialization;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayDonateitemsGetResponse : AopResponse
- {
-
-
-
- [XmlElement("amount")]
- public string Amount { get; set; }
-
-
-
- [XmlElement("count")]
- public string Count { get; set; }
- }
- }
|