2012-08-21 03:32:59 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Configuration
|
|
|
|
|
{
|
2012-07-29 15:19:25 +00:00
|
|
|
|
public class ServerConfiguration : BaseApplicationConfiguration
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
2012-08-21 03:32:59 +00:00
|
|
|
|
public bool EnableInternetProviders { get; set; }
|
2012-09-02 05:30:25 +00:00
|
|
|
|
public string WeatherZipCode { get; set; }
|
2012-07-21 18:39:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|