blob: b9da1f6a62c0c7b078a3882050b1de2d53e79bcc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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; }
}
}
|