mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-26 20:14:45 +01:00
unified the two sorting api's
This commit is contained in:
16
MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs
Normal file
16
MediaBrowser.Controller/Sorting/IUserBaseItemComparer.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using MediaBrowser.Controller.Entities;
|
||||
|
||||
namespace MediaBrowser.Controller.Sorting
|
||||
{
|
||||
/// <summary>
|
||||
/// Represents a BaseItem comparer that requires a User to perform it's comparison
|
||||
/// </summary>
|
||||
public interface IUserBaseItemComparer : IBaseItemComparer
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the user.
|
||||
/// </summary>
|
||||
/// <value>The user.</value>
|
||||
User User { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user