GPSInfoModel.cs 758 B

123456789101112131415161718192021222324252627
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Azylee.YeahWeb.BaiDuWebAPI.GPSAPI
  6. {
  7. public class GPSInfoModel
  8. {
  9. public string Country { get; set; }
  10. public string Province { get; set; }
  11. public string City { get; set; }
  12. public string District { get; set; }
  13. public string Street { get; set; }
  14. public string Address { get; set; }
  15. public override string ToString()
  16. {
  17. return $"Country: {Country}, " +
  18. $"Province: {Province}, " +
  19. $"City: {City}, " +
  20. $"District: {District}, " +
  21. $"Street: {Street}, " +
  22. $"Address: {Address}";
  23. }
  24. }
  25. }