using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// District Data Structure. /// [Serializable] public class District : AopObject { /// /// 行政地区编码 /// [XmlElement("code")] public string Code { get; set; } /// /// 行政地区名称 /// [XmlElement("name")] public string Name { get; set; } } }