2019-01-13 20:01:16 +00:00
|
|
|
using System.Collections.Generic;
|
2023-11-09 21:00:13 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
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>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Interface IBaseItemComparer.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2021-05-20 19:28:18 +00:00
|
|
|
public interface IBaseItemComparer : IComparer<BaseItem?>
|
2018-12-27 23:27:57 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2023-11-09 21:00:13 +00:00
|
|
|
/// Gets the comparer type.
|
2018-12-27 23:27:57 +00:00
|
|
|
/// </summary>
|
2023-11-09 21:00:13 +00:00
|
|
|
ItemSortBy Type { get; }
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|