blob: 96f8a2af5ddd5cafabd0bb4473bf09cc74448df8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System.Collections.Generic;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Sorting
{
/// <summary>
/// Interface IBaseItemComparer.
/// </summary>
public interface IBaseItemComparer : IComparer<BaseItem?>
{
/// <summary>
/// Gets the comparer type.
/// </summary>
ItemSortBy Type { get; }
}
}
|