using System; using System.Collections.Generic; namespace Breda_Tour.Data { class Route { public String Title { get; private set; } public List Waypoints { get; private set; } public Route(String Title, List Waypoints) { this.Title = Title; this.Waypoints = Waypoints; } } }