using System;
namespace MediaBrowser.Model.Weather
{
    /// 
    /// Represents a weather forecast for a specific date
    /// 
    public class WeatherForecast
    {
        /// 
        /// Gets or sets the date.
        /// 
        /// The date.
        public DateTime Date { get; set; }
        /// 
        /// Gets or sets the high temperature fahrenheit.
        /// 
        /// The high temperature fahrenheit.
        public int HighTemperatureFahrenheit { get; set; }
        /// 
        /// Gets or sets the low temperature fahrenheit.
        /// 
        /// The low temperature fahrenheit.
        public int LowTemperatureFahrenheit { get; set; }
        /// 
        /// Gets or sets the high temperature celsius.
        /// 
        /// The high temperature celsius.
        public int HighTemperatureCelsius { get; set; }
        /// 
        /// Gets or sets the low temperature celsius.
        /// 
        /// The low temperature celsius.
        public int LowTemperatureCelsius { get; set; }
        /// 
        /// Gets or sets the condition.
        /// 
        /// The condition.
        public WeatherConditions Condition { get; set; }
    }
}