GoogleMapApiDto.cs 761 B

1234567891011121314151617181920212223242526272829303132
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.Dtos.SmallFun
  7. {
  8. /// <summary>
  9. /// googleMapApi
  10. /// </summary>
  11. internal class GoogleMapApiDto
  12. {
  13. }
  14. /// <summary>
  15. /// google 路线查询
  16. /// </summary>
  17. public class GoogleMapDirectionsDto
  18. {
  19. /// <summary>
  20. /// 起始地
  21. /// </summary>
  22. public string? origin { get; set; } = "FERİT RECAİ ERTUĞRUL CAD. NO: 18 ORAN / ANKARA,Turkey"; //默认值
  23. /// <summary>
  24. /// 目的地
  25. /// </summary>
  26. public string? destination { get; set; } = "Dudullu Mh. Imes Sanayi Sitesi 504. Sk. No:4/B1 Umraniye/Istanbul";
  27. }
  28. }