| 12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Threading.Tasks;
-
- namespace CaritasPWA.Shared.Models {
- public class BicycleGeoPosition {
-
- public BicycleGeoPosition() {
- Latitude = 0.0;
- Longitude = 0.0;
- Address = "";
- City = "";
- }
-
- public double Latitude { get; set; }
- public double Longitude { get; set; }
- public string Address { get; set; }
- public string City { get; set; }
-
- }
- }
|