blob: 480cf3adb080294aff6b2302b6e2f5a2df394e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
namespace MediaBrowser.Model.Configuration
{
public class ServerConfiguration : BaseApplicationConfiguration
{
public bool EnableInternetProviders { get; set; }
public string WeatherZipCode { get; set; }
public bool EnableUserProfiles { get; set; }
public ServerConfiguration()
: base()
{
EnableUserProfiles = true;
WeatherZipCode = "02116";
}
}
}
|