using Newtonsoft.Json;
namespace Masuit.Tools.Models
{
///
/// 参考位置
///
public class Pois
{
///
/// 地理位置详细
///
[JsonProperty("addr")]
public string AddressDetail { get; set; }
///
/// 方位
///
[JsonProperty("direction")]
public string Direction { get; set; }
///
/// 距离
///
[JsonProperty("distance")]
public string Distance { get; set; } = "0";
///
/// 建筑物名字
///
[JsonProperty("name")]
public string Name { get; set; }
///
/// 建筑物类型
///
[JsonProperty("poiType")]
public string PoiType { get; set; }
///
/// 经纬度
///
[JsonProperty("point")]
public LatiLongitude Point { get; set; }
///
/// 标签
///
[JsonProperty("tag")]
public string Tag { get; set; }
}
}