mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-13 23:50:29 -05:00
18 lines
466 B
C#
18 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";
|
|
}
|
|
}
|
|
}
|