12345678910111213141516171819 |
- using MediaBrowser.Model.Weather;
- namespace MediaBrowser.Model.Configuration
- {
- public class ServerConfiguration : BaseApplicationConfiguration
- {
- public bool EnableInternetProviders { get; set; }
- public bool EnableUserProfiles { get; set; }
- public string WeatherZipCode { get; set; }
- public WeatherUnits WeatherUnit { get; set; }
- public ServerConfiguration()
- : base()
- {
- EnableUserProfiles = true;
- }
- }
- }
|