mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-15 14:23:14 +01:00
17 lines
466 B
C#
17 lines
466 B
C#
|
|
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";
|
|
}
|
|
}
|
|
}
|