2019-01-13 20:01:16 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:25:32 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
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; }
|
|
|
|
}
|
|
|
|
}
|