namespace MediaBrowser.Model.Configuration { /// /// Serves as a common base class for the Server and UI application Configurations /// public class BaseApplicationConfiguration { public bool EnableDebugLevelLogging { get; set; } public int HttpServerPortNumber { get; set; } public BaseApplicationConfiguration() { HttpServerPortNumber = 8096; } } }