IndexingKind.cs 537 B

1234567891011121314151617181920212223
  1. namespace Jellyfin.Data.Enums
  2. {
  3. /// <summary>
  4. /// An enum representing a type of indexing in a user's display preferences.
  5. /// </summary>
  6. public enum IndexingKind
  7. {
  8. /// <summary>
  9. /// Index by the premiere date.
  10. /// </summary>
  11. PremiereDate = 0,
  12. /// <summary>
  13. /// Index by the production year.
  14. /// </summary>
  15. ProductionYear = 1,
  16. /// <summary>
  17. /// Index by the community rating.
  18. /// </summary>
  19. CommunityRating = 2
  20. }
  21. }