Upgraded Protobuf, and added api support for it

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-29 08:21:56 -04:00
parent de74609784
commit cb7f04e4d3
31 changed files with 286 additions and 58 deletions

View File

@@ -1,13 +1,18 @@
using System;
using ProtoBuf;
namespace MediaBrowser.Model.Entities
{
[ProtoContract]
public class UserItemData
{
[ProtoMember(1)]
public UserItemRating Rating { get; set; }
[ProtoMember(2)]
public long PlaybackPositionTicks { get; set; }
[ProtoMember(3)]
public int PlayCount { get; set; }
}