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 437B

1234567891011121314151617
  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 BicycleGeoPosition() {
  8. Latitude = 0.0;
  9. Longitude = 0.0;
  10. Address = "";
  11. City = "";
  12. }
  13. }
  14. }