mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-16 02:18:54 -07:00
18 lines
470 B
C#
18 lines
470 B
C#
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
/// <summary>
|
|
/// Serves as a common base class for the Server and UI application Configurations
|
|
/// </summary>
|
|
public class BaseApplicationConfiguration
|
|
{
|
|
public bool EnableDebugLevelLogging { get; set; }
|
|
public int HttpServerPortNumber { get; set; }
|
|
|
|
public BaseApplicationConfiguration()
|
|
{
|
|
HttpServerPortNumber = 8096;
|
|
}
|
|
}
|
|
}
|