using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// Neighborhood Data Structure.
///
[Serializable]
public class Neighborhood : AopObject
{
///
/// 社区名称
///
[XmlElement("name")]
public string Name { get; set; }
///
/// POI类型
///
[XmlElement("type")]
public string Type { get; set; }
}
}