1234567891011121314151617181920212223242526 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEcapiprodDrawndnDrawndnlistQueryResponse : AopResponse
- {
-
-
-
- [XmlArray("drawndn_list")]
- [XmlArrayItem("drawndn_vo")]
- public List<DrawndnVo> DrawndnList { get; set; }
-
-
-
- [XmlElement("request_id")]
- public string RequestId { get; set; }
- }
- }
|