aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Configuration/ServerConfiguration.cs
blob: 38b1b9cafa082b6e076bfafb000fbbe7f0d30165 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using MediaBrowser.Common.Configuration;

namespace MediaBrowser.Controller.Configuration
{
    public class ServerConfiguration : BaseConfiguration
    {
        public string ImagesByNamePath { get; set; }
        public int RecentItemDays { get; set; }

        public ServerConfiguration()
            : base()
        {
            RecentItemDays = 14;
        }
    }
}