// // Copyright (c) PlaceholderCompany. All rights reserved. // namespace MediaBrowser.Controller.Sorting { using System.Collections.Generic; using Jellyfin.Data.Enums; using MediaBrowser.Controller.Entities; /// /// Interface IBaseItemComparer. /// public interface IBaseItemComparer : IComparer { /// /// Gets the comparer type. /// ItemSortBy Type { get; } } }