aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/UserItemData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Entities/UserItemData.cs')
-rw-r--r--MediaBrowser.Model/Entities/UserItemData.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/UserItemData.cs b/MediaBrowser.Model/Entities/UserItemData.cs
new file mode 100644
index 000000000..817cf640e
--- /dev/null
+++ b/MediaBrowser.Model/Entities/UserItemData.cs
@@ -0,0 +1,20 @@
+using System;
+
+namespace MediaBrowser.Model.Entities
+{
+ public class UserItemData
+ {
+ public UserItemRating Rating { get; set; }
+
+ public long PlaybackPositionTicks { get; set; }
+
+ public int PlayCount { get; set; }
+ }
+
+ public enum UserItemRating
+ {
+ Likes,
+ Dislikes,
+ Favorite
+ }
+}