IndexingKind.cs 454 B

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