UserConfiguration.cs 374 B

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