2012-09-02 13:45:02 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
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-09-02 14:11:58 +00:00
|
|
|
|
public bool EnableUserProfiles { get; set; }
|
|
|
|
|
|
|
|
|
|
public ServerConfiguration()
|
|
|
|
|
: base()
|
|
|
|
|
{
|
|
|
|
|
EnableUserProfiles = true;
|
|
|
|
|
WeatherZipCode = "02116";
|
|
|
|
|
}
|
2012-07-21 18:39:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|