using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OASystem.Domain.Dtos.SmallFun
{
///
/// googleMapApi
///
internal class GoogleMapApiDto
{
}
///
/// google 路线查询
///
public class GoogleMapDirectionsDto
{
///
/// 起始地
///
public string? origin { get; set; } = "FERİT RECAİ ERTUĞRUL CAD. NO: 18 ORAN / ANKARA,Turkey"; //默认值
///
/// 目的地
///
public string? destination { get; set; } = "Dudullu Mh. Imes Sanayi Sitesi 504. Sk. No:4/B1 Umraniye/Istanbul";
}
}