mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-22 16:54:46 +03:00
Added some favorites api calls
This commit is contained in:
parent
fd9ba20451
commit
c1c4c85fc2
23
MediaBrowser.Model/DTO/DTOUserItemData.cs
Normal file
23
MediaBrowser.Model/DTO/DTOUserItemData.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user