jellyfin/MediaBrowser.Model/Configuration/ServerConfiguration.cs

20 lines
519 B
C#
Raw Normal View History

2012-09-02 19:34:12 +02:00
using MediaBrowser.Model.Weather;
namespace MediaBrowser.Model.Configuration
{
public class ServerConfiguration : BaseApplicationConfiguration
{
2012-08-21 05:32:59 +02:00
public bool EnableInternetProviders { get; set; }
public bool EnableUserProfiles { get; set; }
2012-09-02 19:34:12 +02:00
public string WeatherZipCode { get; set; }
public WeatherUnits WeatherUnit { get; set; }
public ServerConfiguration()
: base()
{
EnableUserProfiles = true;
}
}
}