jellyfin-server/MediaBrowser.Model/Configuration/ServerConfiguration.cs

10 lines
249 B
C#
Raw Normal View History


namespace MediaBrowser.Model.Configuration
{
public class ServerConfiguration : BaseApplicationConfiguration
{
2012-08-21 03:32:59 +00:00
public bool EnableInternetProviders { get; set; }
2012-09-02 05:30:25 +00:00
public string WeatherZipCode { get; set; }
}
}