1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.SmallFun
- {
-
-
-
- internal class GoogleMapApiDto
- {
- }
-
-
-
- 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";
- }
- }
|