Added EnableUserProfiles to server config

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-09-02 10:11:58 -04:00
parent e52833059b
commit b1212467a0

View File

@ -5,5 +5,13 @@ namespace MediaBrowser.Model.Configuration
{
public bool EnableInternetProviders { get; set; }
public string WeatherZipCode { get; set; }
public bool EnableUserProfiles { get; set; }
public ServerConfiguration()
: base()
{
EnableUserProfiles = true;
WeatherZipCode = "02116";
}
}
}