diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/User.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/User.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/User.cs b/MediaBrowser.Model/Entities/User.cs index 3c6117fca..68e130c7a 100644 --- a/MediaBrowser.Model/Entities/User.cs +++ b/MediaBrowser.Model/Entities/User.cs @@ -17,5 +17,16 @@ namespace MediaBrowser.Model.Entities public DateTime? LastLoginDate { get; set; }
public DateTime? LastActivityDate { get; set; }
+
+ /// <summary>
+ /// This allows the user to configure how they want to rate items
+ /// </summary>
+ public ItemRatingMode ItemRatingMode { get; set; }
+ }
+
+ public enum ItemRatingMode
+ {
+ LikeOrDislike,
+ Numeric
}
}
|
