jellyfin/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 20:32:59 -07:00
public bool EnableInternetProviders { get; set; }
2012-09-01 22:30:25 -07:00
public string WeatherZipCode { get; set; }
}
}