using Newtonsoft.Json; namespace Masuit.Tools.Models { /// /// 经纬度 /// public class Location { /// /// 经度 /// [JsonProperty("lng")] public double Lng { get; set; } /// /// 纬度 /// [JsonProperty("lat")] public double Lat { get; set; } } }