IBaseItemComparer.cs 410 B

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