using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Top.Api.Response { /// /// AreasGetResponse. /// public class AreasGetResponse : TopResponse { /// /// 地址区域信息列表.返回的Area包含的具体信息为入参fields请求的字段信息 。 /// [XmlArray("areas")] [XmlArrayItem("area")] public List Areas { get; set; } } }