GPSPointWebModel.cs 418 B

123456789101112131415161718
  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 GPSPointWebModel
  8. {
  9. public int status { get; set; }
  10. public IList<BaiduGPSPointWebResult> result { get; set; }
  11. }
  12. public class BaiduGPSPointWebResult
  13. {
  14. public double x { get; set; }
  15. public double y { get; set; }
  16. }
  17. }