namespace MediaBrowser.Model.Weather
{
    /// 
    /// Class WeatherInfo
    /// 
    public class WeatherInfo
    {
        /// 
        /// Gets or sets the current weather.
        /// 
        /// The current weather.
        public WeatherStatus CurrentWeather { get; set; }
        /// 
        /// Gets or sets the forecasts.
        /// 
        /// The forecasts.
        public WeatherForecast[] Forecasts { get; set; }
        /// 
        /// Initializes a new instance of the  class.
        /// 
        public WeatherInfo()
        {
            Forecasts = new WeatherForecast[] {};
        }
    }
}