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.
17 lines
438 B
17 lines
438 B
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; }
|
|
}
|
|
}
|