namespace MediaBrowser.Model.Configuration { /// /// This holds settings that can be personalized on a per-user, per-device basis. /// public class UserConfiguration { public int RecentItemDays { get; set; } public UserConfiguration() { RecentItemDays = 14; } } }