mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 18:14:42 +01:00
Added filters to the item list page
This commit is contained in:
@@ -33,6 +33,14 @@ namespace MediaBrowser.Model.Querying
|
||||
/// <summary>
|
||||
/// The item is resumable
|
||||
/// </summary>
|
||||
IsResumable = 7
|
||||
IsResumable = 7,
|
||||
/// <summary>
|
||||
/// The likes
|
||||
/// </summary>
|
||||
Likes = 8,
|
||||
/// <summary>
|
||||
/// The dislikes
|
||||
/// </summary>
|
||||
Dislikes = 9
|
||||
}
|
||||
}
|
||||
|
||||
@@ -50,5 +50,9 @@ namespace MediaBrowser.Model.Querying
|
||||
/// The production year
|
||||
/// </summary>
|
||||
public const string ProductionYear = "ProductionYear";
|
||||
/// <summary>
|
||||
/// The play count
|
||||
/// </summary>
|
||||
public const string PlayCount = "PlayCount";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user