aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/IndexingKind.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Enums/IndexingKind.cs')
-rw-r--r--Jellyfin.Data/Enums/IndexingKind.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Jellyfin.Data/Enums/IndexingKind.cs b/Jellyfin.Data/Enums/IndexingKind.cs
deleted file mode 100644
index 3967712b0..000000000
--- a/Jellyfin.Data/Enums/IndexingKind.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-namespace Jellyfin.Data.Enums
-{
- /// <summary>
- /// An enum representing a type of indexing in a user's display preferences.
- /// </summary>
- public enum IndexingKind
- {
- /// <summary>
- /// Index by the premiere date.
- /// </summary>
- PremiereDate = 0,
-
- /// <summary>
- /// Index by the production year.
- /// </summary>
- ProductionYear = 1,
-
- /// <summary>
- /// Index by the community rating.
- /// </summary>
- CommunityRating = 2
- }
-}