| 123456789101112131415161718192021 |
- namespace cwebplusApp.Shared.Models {
- public class BicycleGeoPosition {
-
-
- public double Latitude { get; set; }
- public double Longitude { get; set; }
- public string Address { get; set; }
- public string City { get; set; }
- public string Zip { get; set; }
- public string DisplayCity { get; set; }
-
- public BicycleGeoPosition() {
- Latitude = 0.0;
- Longitude = 0.0;
- Address = "";
- Zip = "";
- City = "";
- DisplayCity = "";
- }
- }
- }
|