18 lines
408 B
C#
18 lines
408 B
C#
|
using MediaBrowser.Controller.Entities;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace MediaBrowser.Controller.Sorting
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Interface IBaseItemComparer
|
|||
|
/// </summary>
|
|||
|
public interface IBaseItemComparer : IComparer<BaseItem>
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Gets the name.
|
|||
|
/// </summary>
|
|||
|
/// <value>The name.</value>
|
|||
|
string Name { get; }
|
|||
|
}
|
|||
|
}
|