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.
jellyfin/MediaBrowser.Model/Users/UserItemData.cs

22 lines
400 B

using MediaBrowser.Model.Entities;
using System;
namespace MediaBrowser.Model.Users
{
public class UserItemData
{
public UserItemRating Rating { get; set; }
public TimeSpan PlaybackPosition { get; set; }
public int PlayCount { get; set; }
}
public enum UserItemRating
{
Likes,
Dislikes,
Favorite
}
}