OpenAccountListResponse.cs 467 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// OpenAccountListResponse.
  8. /// </summary>
  9. public class OpenAccountListResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 返回信息
  13. /// </summary>
  14. [XmlArray("datas")]
  15. [XmlArrayItem("openaccount_object")]
  16. public List<Top.Api.Domain.OpenaccountObject> Datas { get; set; }
  17. }
  18. }