IndexingKind.cs 422 B

1234567891011121314151617181920
  1. namespace Jellyfin.Data.Enums
  2. {
  3. public enum IndexingKind
  4. {
  5. /// <summary>
  6. /// Index by the premiere date.
  7. /// </summary>
  8. PremiereDate = 0,
  9. /// <summary>
  10. /// Index by the production year.
  11. /// </summary>
  12. ProductionYear = 1,
  13. /// <summary>
  14. /// Index by the community rating.
  15. /// </summary>
  16. CommunityRating = 2
  17. }
  18. }