2012-09-02 09:45:02 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
2012-07-21 14:39:47 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2012-07-23 11:05:30 -04:00
|
|
|
|
/// Serves as a common base class for the Server and UI application Configurations
|
2012-07-21 14:39:47 -04:00
|
|
|
|
/// </summary>
|
2012-07-29 11:19:25 -04:00
|
|
|
|
public class BaseApplicationConfiguration
|
2012-07-21 14:39:47 -04:00
|
|
|
|
{
|
2012-09-02 09:45:02 -04:00
|
|
|
|
public bool EnableDebugLevelLogging { get; set; }
|
2012-07-21 14:39:47 -04:00
|
|
|
|
public int HttpServerPortNumber { get; set; }
|
|
|
|
|
|
|
2012-07-29 11:19:25 -04:00
|
|
|
|
public BaseApplicationConfiguration()
|
2012-07-21 14:39:47 -04:00
|
|
|
|
{
|
|
|
|
|
|
HttpServerPortNumber = 8096;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|