1234567891011121314151617181920212223242526 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- using Aop.Api.Domain;
- namespace Aop.Api.Response
- {
-
-
-
- public class AlipayEcardEduCardGetResponse : AopResponse
- {
-
-
-
- [XmlElement("first_deposit_flag")]
- public bool FirstDepositFlag { get; set; }
-
-
-
- [XmlArray("onecard")]
- [XmlArrayItem("edu_one_card_deposit_card_query_result")]
- public List<EduOneCardDepositCardQueryResult> Onecard { get; set; }
- }
- }
|