blob: c2aa7372807d0ce58621493aa7244c766d503826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;
}
}
}
|