diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-24 10:06:25 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-24 10:06:25 -0400 |
| commit | 8ad9ac3b73c7aabee2574f0ce5b4a97362777f26 (patch) | |
| tree | 76c42081e370b883a68f4644e449e2c0efef83aa /MediaBrowser.Model/Configuration/ServerConfiguration.cs | |
| parent | e946078ab3d4ca971ad4da823a9058866c332635 (diff) | |
restored weather settings
Diffstat (limited to 'MediaBrowser.Model/Configuration/ServerConfiguration.cs')
| -rw-r--r-- | MediaBrowser.Model/Configuration/ServerConfiguration.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/ServerConfiguration.cs b/MediaBrowser.Model/Configuration/ServerConfiguration.cs index 0446046c2..567f305bc 100644 --- a/MediaBrowser.Model/Configuration/ServerConfiguration.cs +++ b/MediaBrowser.Model/Configuration/ServerConfiguration.cs @@ -9,6 +9,18 @@ namespace MediaBrowser.Model.Configuration public class ServerConfiguration : BaseApplicationConfiguration { /// <summary> + /// Gets or sets the zip code to use when displaying weather + /// </summary> + /// <value>The weather location.</value> + public string WeatherLocation { get; set; } + + /// <summary> + /// Gets or sets the weather unit to use when displaying weather + /// </summary> + /// <value>The weather unit.</value> + public WeatherUnits WeatherUnit { get; set; } + + /// <summary> /// Gets or sets a value indicating whether [enable HTTP level logging]. /// </summary> /// <value><c>true</c> if [enable HTTP level logging]; otherwise, <c>false</c>.</value> |
