using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ApplyBusinessCity Data Structure.
///
[Serializable]
public class ApplyBusinessCity : AopObject
{
///
/// 业务归属地区编码,精确到区县
///
[XmlElement("area_code")]
public string AreaCode { get; set; }
///
/// 投保地区用户选择的层级
///
[XmlElement("city_level")]
public string CityLevel { get; set; }
}
}