PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BicycleGeoPosition.cs 581B

123456789101112131415161718192021
  1. namespace cwebplusApp.Shared.Models {
  2. public class BicycleGeoPosition {
  3. public double Latitude { get; set; }
  4. public double Longitude { get; set; }
  5. public string Address { get; set; }
  6. public string City { get; set; }
  7. public string Zip { get; set; }
  8. public string DisplayCity { get; set; }
  9. public BicycleGeoPosition() {
  10. Latitude = 0.0;
  11. Longitude = 0.0;
  12. Address = "";
  13. Zip = "";
  14. City = "";
  15. DisplayCity = "";
  16. }
  17. }
  18. }