jellyfin/MediaBrowser.Model/Configuration/Configuration.cs

18 lines
442 B
C#
Raw Normal View History

using MediaBrowser.Model.Logging;
2012-07-12 08:55:27 +02:00
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 = LogSeverity.Info;
2012-07-12 08:55:27 +02:00
}
}
}