11 lines
296 B
C#
11 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; }
|
|
}
|
|
}
|