ServerConfiguration.cs 466 B

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