Route.cs 447 B

12345678910111213141516171819202122
  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 Route
  9. {
  10. public String Title { get; private set; }
  11. public List<Waypoint> Waypoints { get; private set; }
  12. public Route(String Title, List<Waypoint> Waypoints)
  13. {
  14. this.Title = Title;
  15. this.Waypoints = Waypoints;
  16. }
  17. }
  18. }