using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AddressDTO Data Structure.
///
[Serializable]
public class AddressDTO : AopObject
{
///
/// POI编码
///
[XmlElement("poi_code")]
public string PoiCode { get; set; }
///
/// POI访问URL
///
[XmlElement("poi_url")]
public string PoiUrl { get; set; }
}
}