WeatherInfo.cs 755 B

1234567891011121314151617181920212223242526272829
  1. 
  2. namespace MediaBrowser.Model.Weather
  3. {
  4. /// <summary>
  5. /// Class WeatherInfo
  6. /// </summary>
  7. public class WeatherInfo
  8. {
  9. /// <summary>
  10. /// Gets or sets the current weather.
  11. /// </summary>
  12. /// <value>The current weather.</value>
  13. public WeatherStatus CurrentWeather { get; set; }
  14. /// <summary>
  15. /// Gets or sets the forecasts.
  16. /// </summary>
  17. /// <value>The forecasts.</value>
  18. public WeatherForecast[] Forecasts { get; set; }
  19. /// <summary>
  20. /// Initializes a new instance of the <see cref="WeatherInfo"/> class.
  21. /// </summary>
  22. public WeatherInfo()
  23. {
  24. Forecasts = new WeatherForecast[] {};
  25. }
  26. }
  27. }