ServerConfiguration.cs 519 B

12345678910111213141516171819
  1. using MediaBrowser.Model.Weather;
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. public class ServerConfiguration : BaseApplicationConfiguration
  5. {
  6. public bool EnableInternetProviders { get; set; }
  7. public bool EnableUserProfiles { get; set; }
  8. public string WeatherZipCode { get; set; }
  9. public WeatherUnits WeatherUnit { get; set; }
  10. public ServerConfiguration()
  11. : base()
  12. {
  13. EnableUserProfiles = true;
  14. }
  15. }
  16. }