| 1234567891011121314151617181920 |
- using System;
- using System.Xml.Serialization;
- using System.Collections.Generic;
- namespace Top.Api.Response
- {
- /// <summary>
- /// OpenAccountUpdateResponse.
- /// </summary>
- public class OpenAccountUpdateResponse : TopResponse
- {
- /// <summary>
- /// update是否成功
- /// </summary>
- [XmlArray("datas")]
- [XmlArrayItem("openaccount_void")]
- public List<Top.Api.Domain.OpenaccountVoid> Datas { get; set; }
- }
- }
|