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