using Newtonsoft.Json;
using System.Collections.Generic;
namespace Masuit.Tools.Models
{
///
/// 返回结果集
///
public class AddressResult
{
///
/// 经纬度
///
[JsonProperty("location")]
public Location Location { get; set; }
///
/// 详细地址
///
[JsonProperty("formatted_address")]
public string FormattedAddress { get; set; }
///
/// 商业地址
///
[JsonProperty("business")]
public string Business { get; set; }
///
/// 地理信息成分
///
[JsonProperty("addressComponent")]
public AddressComponent AddressComponent { get; set; }
///
/// 参考地址
///
[JsonProperty("pois")]
public List Pois { get; set; } = new List();
///
/// 语义描述
///
[JsonProperty("sematic_description")]
public string SematicDescription { get; set; }
}
}