You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
502 B
24 lines
502 B
using ProtoBuf;
|
|
|
|
namespace MediaBrowser.Model.DTO
|
|
{
|
|
[ProtoContract]
|
|
public class DtoUserItemData
|
|
{
|
|
[ProtoMember(1)]
|
|
public float? Rating { get; set; }
|
|
|
|
[ProtoMember(2)]
|
|
public long PlaybackPositionTicks { get; set; }
|
|
|
|
[ProtoMember(3)]
|
|
public int PlayCount { get; set; }
|
|
|
|
[ProtoMember(4)]
|
|
public bool IsFavorite { get; set; }
|
|
|
|
[ProtoMember(5)]
|
|
public bool? Likes { get; set; }
|
|
}
|
|
}
|