You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 line
1013B

  1. using Newtonsoft.Json;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace GpsCardGatewayPosition.Model.Cache
  8. {
  9. public class SingleWifiLocation
  10. {
  11. [JsonProperty("Id")]
  12. public string PersonId { get; set; }
  13. [JsonProperty("mac")]
  14. public string Message { get; set; }
  15. [JsonProperty("mmac")]
  16. public string Mmac { get; set; }
  17. [JsonProperty("province")]
  18. public string Province { get; set; }
  19. [JsonProperty("city")]
  20. public string City { get; set; }
  21. [JsonProperty("district")]
  22. public string District { get; set; }
  23. [JsonProperty("address")]
  24. public string Address { get; set; }
  25. [JsonProperty("cityCode")]
  26. public string CityCode { get; set; }
  27. [JsonProperty("oLat")]
  28. public double Latitude { get; set; }
  29. [JsonProperty("oLng")]
  30. public double Longitude { get; set; }
  31. }
  32. }