From 3b574108125a402741023c1a4f045aef93875312 Mon Sep 17 00:00:00 2001 From: Kenneth van Ewijk Date: Tue, 15 Dec 2015 17:04:40 +0100 Subject: [PATCH] Created --- NavCityBreda/Model/Route.cs | 12 ++++++++++++ NavCityBreda/Model/Waypoint.cs | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 NavCityBreda/Model/Route.cs create mode 100644 NavCityBreda/Model/Waypoint.cs diff --git a/NavCityBreda/Model/Route.cs b/NavCityBreda/Model/Route.cs new file mode 100644 index 0000000..786e678 --- /dev/null +++ b/NavCityBreda/Model/Route.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace NavCityBreda.Model +{ + class Route + { + } +} diff --git a/NavCityBreda/Model/Waypoint.cs b/NavCityBreda/Model/Waypoint.cs new file mode 100644 index 0000000..fde0d43 --- /dev/null +++ b/NavCityBreda/Model/Waypoint.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace NavCityBreda.Model +{ + class Waypoint + { + } +}