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.

30 lines
838B

  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.Service.Resolver.Property.Dto
  8. {
  9. public class LbsInfoModel
  10. {
  11. [JsonProperty("bts")]
  12. public string Bts { get; set; }
  13. [JsonProperty("IMSI")]
  14. public string IMSI { get; set; }
  15. [JsonProperty("IMEI")]
  16. public string IMEI { get; set; }
  17. [JsonProperty("SMAC")]
  18. public string SMAC { get; set; }
  19. [JsonProperty("nearbts")]
  20. public string Nearbts { get; set; }
  21. [JsonProperty("cdma")]
  22. public int Cdma { get; set; }
  23. [JsonProperty("IDType")]
  24. public int IDType { get; set; }
  25. [JsonProperty("IDNumber")]
  26. public string IDNumber { get; set; }
  27. }
  28. }