using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GpsCardGatewayPosition.Model.Cache { public class SingleWifiLocation { [JsonProperty("Id")] public string PersonId { get; set; } [JsonProperty("mac")] public string Message { get; set; } [JsonProperty("mmac")] public string Mmac { get; set; } [JsonProperty("province")] public string Province { get; set; } [JsonProperty("city")] public string City { get; set; } [JsonProperty("district")] public string District { get; set; } [JsonProperty("address")] public string Address { get; set; } [JsonProperty("cityCode")] public string CityCode { get; set; } [JsonProperty("oLat")] public double Latitude { get; set; } [JsonProperty("oLng")] public double Longitude { get; set; } } }