aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/UserConfiguration.cs
blob: 5616f6dd60a8a765ac7016165fea643d418f324b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace MediaBrowser.Model.Configuration
{
    /// <summary>
    /// This holds settings that can be personalized on a per-user, per-device basis.
    /// </summary>
    public class UserConfiguration
    {
        public int RecentItemDays { get; set; }

        public UserConfiguration()
        {
            RecentItemDays = 14;
        }
    }
}