mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-19 21:45:35 +01:00
10 lines
296 B
C#
10 lines
296 B
C#
using MediaBrowser.Common.Configuration;
|
|
|
|
namespace MediaBrowser.Controller.Configuration
|
|
{
|
|
public class ServerConfiguration : BaseApplicationConfiguration
|
|
{
|
|
public bool EnableInternetProviders { get; set; }
|
|
public string WeatherZipCode { get; set; }
|
|
}
|
|
}
|