waypoint.cs 618 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Breda_Tour.Data
  7. {
  8. class Waypoint
  9. {
  10. public float Lat { get; private set; }
  11. public float Long { get; private set; }
  12. public String Title { get; private set; }
  13. public String Description { get; private set; }
  14. public Waypoint(float Lat, float Long, String Title, String Description)
  15. {
  16. this.Lat = Lat;
  17. this.Long = Long;
  18. this.Title = Title;
  19. this.Description = Description;
  20. }
  21. }
  22. }