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 BicycleGeoPosition() {
  4. Latitude = 0.0;
  5. Longitude = 0.0;
  6. Address = "";
  7. City = "";
  8. }
  9. public double Latitude { get; set; }
  10. public double Longitude { get; set; }
  11. public string Address { get; set; }
  12. public string City { get; set; }
  13. }
  14. }