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