BaseApplicationConfiguration.cs 470 B

1234567891011121314151617
  1. 
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. /// <summary>
  5. /// Serves as a common base class for the Server and UI application Configurations
  6. /// </summary>
  7. public class BaseApplicationConfiguration
  8. {
  9. public bool EnableDebugLevelLogging { get; set; }
  10. public int HttpServerPortNumber { get; set; }
  11. public BaseApplicationConfiguration()
  12. {
  13. HttpServerPortNumber = 8096;
  14. }
  15. }
  16. }