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.
|
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
|
|
}
|
|
}
|