aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Weather/WeatherInfo.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-23 11:02:53 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-06-23 11:02:53 -0400
commit189618a75159d604e425c9318984dc2d8a9cc3f9 (patch)
treea87beed88f3f90679b6178641a8469f4129986d7 /MediaBrowser.Model/Weather/WeatherInfo.cs
parent0acc25735419b051c6f57a2c08b2ad6f3a969b83 (diff)
fixes #358 - Weather validation in Server configuration
Diffstat (limited to 'MediaBrowser.Model/Weather/WeatherInfo.cs')
-rw-r--r--MediaBrowser.Model/Weather/WeatherInfo.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/MediaBrowser.Model/Weather/WeatherInfo.cs b/MediaBrowser.Model/Weather/WeatherInfo.cs
deleted file mode 100644
index 8aad52cb2e..0000000000
--- a/MediaBrowser.Model/Weather/WeatherInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-
-namespace MediaBrowser.Model.Weather
-{
- /// <summary>
- /// Class WeatherInfo
- /// </summary>
- public class WeatherInfo
- {
- /// <summary>
- /// Gets or sets the current weather.
- /// </summary>
- /// <value>The current weather.</value>
- public WeatherStatus CurrentWeather { get; set; }
-
- /// <summary>
- /// Gets or sets the forecasts.
- /// </summary>
- /// <value>The forecasts.</value>
- public WeatherForecast[] Forecasts { get; set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="WeatherInfo"/> class.
- /// </summary>
- public WeatherInfo()
- {
- Forecasts = new WeatherForecast[] {};
- }
- }
-}