using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayEbppConfigCitySearchResponse.
///
public class AlipayEbppConfigCitySearchResponse : AopResponse
{
///
/// 接口主要输出参数列表: AreaInfoResult{List{ areaInfo:{province, cityList}} }
///
[XmlArray("area_info_result")]
[XmlArrayItem("area_info")]
public List AreaInfoResult { get; set; }
}
}