aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Users/User.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Users/User.cs')
-rw-r--r--MediaBrowser.Model/Users/User.cs34
1 files changed, 0 insertions, 34 deletions
diff --git a/MediaBrowser.Model/Users/User.cs b/MediaBrowser.Model/Users/User.cs
deleted file mode 100644
index dcef153c5..000000000
--- a/MediaBrowser.Model/Users/User.cs
+++ /dev/null
@@ -1,34 +0,0 @@
-using System;
-using System.Collections.Generic;
-using MediaBrowser.Model.Entities;
-
-namespace MediaBrowser.Model.Users
-{
- public class User : BaseEntity
- {
- public string MaxParentalRating { get; set; }
-
- private Dictionary<Guid, UserItemData> _ItemData = new Dictionary<Guid, UserItemData>();
- public Dictionary<Guid, UserItemData> ItemData { get { return _ItemData; } set { _ItemData = value; } }
-
- public int RecentItemDays { get; set; }
-
- public User()
- {
- RecentItemDays = 14;
- }
-
- /// <summary>
- /// Gets user data for an item, if there is any
- /// </summary>
- public UserItemData GetItemData(Guid itemId)
- {
- if (ItemData.ContainsKey(itemId))
- {
- return ItemData[itemId];
- }
-
- return null;
- }
- }
-}