using ProtoBuf;
namespace MediaBrowser.Model.Weather
{
    /// 
    /// Class WeatherInfo
    /// 
    [ProtoContract]
    public class WeatherInfo
    {
        /// 
        /// Gets or sets the current weather.
        /// 
        /// The current weather.
        [ProtoMember(1)]
        public WeatherStatus CurrentWeather { get; set; }
        /// 
        /// Gets or sets the forecasts.
        /// 
        /// The forecasts.
        [ProtoMember(2)]
        public WeatherForecast[] Forecasts { get; set; }
    }
}