mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
Weather updates
This commit is contained in:
parent
b6bc22ae63
commit
3c47375229
@@ -1,17 +1,19 @@
|
||||
|
||||
using MediaBrowser.Model.Weather;
|
||||
|
||||
namespace MediaBrowser.Model.Configuration
|
||||
{
|
||||
public class ServerConfiguration : BaseApplicationConfiguration
|
||||
{
|
||||
public bool EnableInternetProviders { get; set; }
|
||||
public string WeatherZipCode { get; set; }
|
||||
public bool EnableUserProfiles { get; set; }
|
||||
|
||||
public string WeatherZipCode { get; set; }
|
||||
public WeatherUnits WeatherUnit { get; set; }
|
||||
|
||||
public ServerConfiguration()
|
||||
: base()
|
||||
{
|
||||
EnableUserProfiles = true;
|
||||
WeatherZipCode = "02116";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user