Files
jellyfin-jellyfin-1/MediaBrowser.Model/Configuration/ServerConfiguration.cs

10 lines
249 B
C#
Raw Normal View History


namespace MediaBrowser.Model.Configuration
{
public class ServerConfiguration : BaseApplicationConfiguration
{
2012-08-20 23:32:59 -04:00
public bool EnableInternetProviders { get; set; }
2012-09-02 01:30:25 -04:00
public string WeatherZipCode { get; set; }
}
}