PWA Fundvelo der Caritas.
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

BicycleGeoPosition.cs 539B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace CaritasPWA.Shared.Models {
  6. public class BicycleGeoPosition {
  7. public BicycleGeoPosition() {
  8. Latitude = 0.0;
  9. Longitude = 0.0;
  10. Address = "";
  11. City = "";
  12. }
  13. public double Latitude { get; set; }
  14. public double Longitude { get; set; }
  15. public string Address { get; set; }
  16. public string City { get; set; }
  17. }
  18. }