2012-08-18 08:22:54 +00:00
|
|
|
|
using System;
|
2012-08-29 12:21:56 +00:00
|
|
|
|
using ProtoBuf;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-18 08:22:54 +00:00
|
|
|
|
namespace MediaBrowser.Model.Entities
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-29 12:21:56 +00:00
|
|
|
|
[ProtoContract]
|
2012-07-12 06:55:27 +00:00
|
|
|
|
public class UserItemData
|
|
|
|
|
{
|
2012-08-29 12:21:56 +00:00
|
|
|
|
[ProtoMember(1)]
|
2012-07-12 06:55:27 +00:00
|
|
|
|
public UserItemRating Rating { get; set; }
|
|
|
|
|
|
2012-08-29 12:21:56 +00:00
|
|
|
|
[ProtoMember(2)]
|
2012-08-18 08:22:54 +00:00
|
|
|
|
public long PlaybackPositionTicks { get; set; }
|
2012-07-16 16:50:44 +00:00
|
|
|
|
|
2012-08-29 12:21:56 +00:00
|
|
|
|
[ProtoMember(3)]
|
2012-07-16 16:50:44 +00:00
|
|
|
|
public int PlayCount { get; set; }
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public enum UserItemRating
|
|
|
|
|
{
|
|
|
|
|
Likes,
|
|
|
|
|
Dislikes,
|
|
|
|
|
Favorite
|
|
|
|
|
}
|
|
|
|
|
}
|