aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Configuration/BaseConfiguration.cs
blob: fe6c1f278e3ff5bdfb9856ddead9259ea4166f48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using MediaBrowser.Common.Logging;

namespace MediaBrowser.Common.Configuration
{
    /// <summary>
    /// Serves as a common base class for the Server and UI application Configurations
    /// </summary>
    public class BaseConfiguration
    {
        public LogSeverity LogSeverity { get; set; }
        public int HttpServerPortNumber { get; set; }

        public BaseConfiguration()
        {
            LogSeverity = LogSeverity.Info;
            HttpServerPortNumber = 8096;
        }
    }
}