You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
525 B
20 lines
525 B
using MediaBrowser.Common.Logging;
|
|
|
|
namespace MediaBrowser.Common.Configuration
|
|
{
|
|
/// <summary>
|
|
/// Serves as a common base class for the Server and UI application Configurations
|
|
/// </summary>
|
|
public class BaseConfiguration
|
|
{
|
|
public LogSeverity LogSeverity { get; set; }
|
|
public int HttpServerPortNumber { get; set; }
|
|
|
|
public BaseConfiguration()
|
|
{
|
|
LogSeverity = LogSeverity.Info;
|
|
HttpServerPortNumber = 8096;
|
|
}
|
|
}
|
|
}
|