OpenWeatherMap API: using just long and double nullables
[CSharpForFun/.git] / Allgemeines / openweathermap / jsonparser / jsonparser / forecastweather / City.cs
index 11308ed..5e98d08 100644 (file)
@@ -4,11 +4,11 @@ namespace jsonparser.forecastweather
 {
     public class City
     {
-        public int? id { get; set; }
+        public long? id { get; set; }
         public string name { get; set; }
         public Coord coord { get; set; }
         public string country { get; set; }
-        public int? population { get; set; }
+        public long? population { get; set; }
     }
 }