0395b3fbce1e1dc068a203f8f609968552160c1b
[CSharpForFun/.git] /
1 using System.Collections.Generic;
2
3 namespace WeatherInformation.Model.ForecastWeatherParser
4 {
5     public class ForecastWeather
6     {
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; }
12     }
13 }
14