AreasGetResponse.cs 519 B

1234567891011121314151617181920
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// AreasGetResponse.
  8. /// </summary>
  9. public class AreasGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 地址区域信息列表.返回的Area包含的具体信息为入参fields请求的字段信息 。
  13. /// </summary>
  14. [XmlArray("areas")]
  15. [XmlArrayItem("area")]
  16. public List<Top.Api.Domain.Area> Areas { get; set; }
  17. }
  18. }