2012-07-31 03:38:00 +00:00
|
|
|
|
using MediaBrowser.Common.Logging;
|
2012-07-21 18:39:47 +00:00
|
|
|
|
|
2012-07-31 03:38:00 +00:00
|
|
|
|
namespace MediaBrowser.Common.Configuration
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2012-07-23 15:05:30 +00:00
|
|
|
|
/// Serves as a common base class for the Server and UI application Configurations
|
2012-07-21 18:39:47 +00:00
|
|
|
|
/// </summary>
|
2012-07-29 15:19:25 +00:00
|
|
|
|
public class BaseApplicationConfiguration
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
|
|
|
|
public LogSeverity LogSeverity { get; set; }
|
|
|
|
|
public int HttpServerPortNumber { get; set; }
|
|
|
|
|
|
2012-07-29 15:19:25 +00:00
|
|
|
|
public BaseApplicationConfiguration()
|
2012-07-21 18:39:47 +00:00
|
|
|
|
{
|
|
|
|
|
LogSeverity = LogSeverity.Info;
|
|
|
|
|
HttpServerPortNumber = 8096;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|