mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-18 15:03:06 +03:00
20 lines
513 B
C#
20 lines
513 B
C#
|
|
using MediaBrowser.Common.Logging;
|
|||
|
|
|
|||
|
|
namespace MediaBrowser.Common.Configuration
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Serves as a common base class for the Server and UI Configurations
|
|||
|
|
/// </summary>
|
|||
|
|
public class BaseConfiguration
|
|||
|
|
{
|
|||
|
|
public LogSeverity LogSeverity { get; set; }
|
|||
|
|
public int HttpServerPortNumber { get; set; }
|
|||
|
|
|
|||
|
|
public BaseConfiguration()
|
|||
|
|
{
|
|||
|
|
LogSeverity = LogSeverity.Info;
|
|||
|
|
HttpServerPortNumber = 8096;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|