using System.Collections.Generic;
using Jellyfin.Data.Enums;
using MediaBrowser.Controller.Entities;
namespace MediaBrowser.Controller.Sorting
{
///
/// Interface IBaseItemComparer.
///
public interface IBaseItemComparer : IComparer
{
///
/// Gets the comparer type.
///
ItemSortBy Type { get; }
}
}