20 lines
519 B
C#
20 lines
519 B
C#
using MediaBrowser.Model.Weather;
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class ServerConfiguration : BaseApplicationConfiguration
|
|
{
|
|
public bool EnableInternetProviders { get; set; }
|
|
public bool EnableUserProfiles { get; set; }
|
|
|
|
public string WeatherZipCode { get; set; }
|
|
public WeatherUnits WeatherUnit { get; set; }
|
|
|
|
public ServerConfiguration()
|
|
: base()
|
|
{
|
|
EnableUserProfiles = true;
|
|
}
|
|
}
|
|
}
|