using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace OASystem.Domain.Dtos.SmallFun
{
    /// <summary>
    /// googleMapApi
    /// </summary>
    internal class GoogleMapApiDto
    {
    }

    /// <summary>
    /// google 路线查询
    /// </summary>
    public class GoogleMapDirectionsDto
    {
        /// <summary>
        /// 起始地
        /// </summary>
        public string? origin { get; set; } = "FERİT RECAİ ERTUĞRUL CAD. NO: 18 ORAN / ANKARA,Turkey"; //默认值 

        /// <summary>
        /// 目的地
        /// </summary>
        public string? destination { get; set; } = "Dudullu Mh. Imes Sanayi Sitesi 504. Sk. No:4/B1 Umraniye/Istanbul";
    }
}