jellyfin/MediaBrowser.Model/Configuration/ServerConfiguration.cs
LukePulverenti Luke Pulverenti luke pulverenti 3c47375229 Weather updates
2012-09-02 13:34:12 -04:00

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;
}
}
}