AlipayEbppConfigProvinceSearchResponse.cs 588 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. using Aop.Api.Domain;
  5. namespace Aop.Api.Response
  6. {
  7. /// <summary>
  8. /// AlipayEbppConfigProvinceSearchResponse.
  9. /// </summary>
  10. public class AlipayEbppConfigProvinceSearchResponse : AopResponse
  11. {
  12. /// <summary>
  13. /// 接口主要输出参数列表: AreaInfoResult{List{ areaInfo:{province, cityList<String>}} }
  14. /// </summary>
  15. [XmlArray("area_info_result")]
  16. [XmlArrayItem("area_info")]
  17. public List<AreaInfo> AreaInfoResult { get; set; }
  18. }
  19. }