2012-07-24 14:54:34 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Configuration
|
2012-07-23 15:05:30 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|