using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Dto.Classe { public class GeolocalisationDTO { public double Latitude { get; set; } public double Longitude { get; set; } } }