mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-04 01:07:28 +01:00
17 lines
458 B
C#
17 lines
458 B
C#
using MediaBrowser.Common.Logging;
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
|
{
|
|
public class Configuration
|
|
{
|
|
public string ImagesByNamePath { get; set; }
|
|
public int HttpServerPortNumber { get; set; }
|
|
public LogSeverity LogSeverity { get; set; }
|
|
|
|
public Configuration()
|
|
{
|
|
HttpServerPortNumber = 8096;
|
|
LogSeverity = Common.Logging.LogSeverity.Info;
|
|
}
|
|
}
|
|
}
|