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

namespace MediaBrowser.Model.Configuration
{
    public class ServerConfiguration : BaseApplicationConfiguration
    {
        public bool EnableInternetProviders { get; set; }
        public bool EnableUserProfiles { get; set; }

        public string WeatherZipCode { get; set; }
        public WeatherUnits WeatherUnit { get; set; }

        public ServerConfiguration()
            : base()
        {
            EnableUserProfiles = true;
        }
    }
}