blob: 97b88a5d9bafd53426b98081b20c5e0bee733f66 (
plain)
1
2
3
4
5
6
7
8
9
|
namespace MediaBrowser.Model.Configuration
{
public class ServerConfiguration : BaseApplicationConfiguration
{
public bool EnableInternetProviders { get; set; }
public string WeatherZipCode { get; set; }
}
}
|