mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 08:45:23 +03:00
Initial check-in
This commit is contained in:
17
MediaBrowser.Model/Configuration/Configuration.cs
Normal file
17
MediaBrowser.Model/Configuration/Configuration.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user