diff --git a/CityFinder/CityFinder.csproj b/CityFinder/CityFinder.csproj
index 29f5640..15bdb79 100644
--- a/CityFinder/CityFinder.csproj
+++ b/CityFinder/CityFinder.csproj
@@ -22,6 +22,7 @@
+
diff --git a/CityFinder/Models/GeocodeApiErrorResponse.cs b/CityFinder/Models/GeocodeApiErrorResponse.cs
new file mode 100644
index 0000000..d2913db
--- /dev/null
+++ b/CityFinder/Models/GeocodeApiErrorResponse.cs
@@ -0,0 +1,26 @@
+using System;
+using System.Collections.Generic;
+
+using System.Globalization;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Converters;
+
+namespace CityFinder.Models
+{
+ public partial class GeocodeApiErrorResponse
+ {
+ [JsonProperty("error_message")]
+ public string ErrorMessage { get; set; }
+
+ [JsonProperty("results")]
+ public List