1 using System.Collections.Generic;
3 namespace WeatherInformation.Model.ForecastWeatherParser
5 public class ForecastWeather
7 public string cod { get; set; }
8 public double message { get; set; }
9 public City city { get; set; }
10 public int cnt { get; set; }
11 public List<WeatherInformation.Model.ForecastWeatherParser.List> list { get; set; }