Route.cs 377 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Breda_Tour.Data
  4. {
  5. class Route
  6. {
  7. public String Title { get; private set; }
  8. public List<Waypoint> Waypoints { get; private set; }
  9. public Route(String Title, List<Waypoint> Waypoints)
  10. {
  11. this.Title = Title;
  12. this.Waypoints = Waypoints;
  13. }
  14. }
  15. }