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.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/IndexingKind.cs b/Jellyfin.Data/Enums/IndexingKind.cs
new file mode 100644
index 000000000..c4d8e70ca
--- /dev/null
+++ b/Jellyfin.Data/Enums/IndexingKind.cs
@@ -0,0 +1,20 @@
+namespace Jellyfin.Data.Enums
+{
+ public enum IndexingKind
+ {
+ /// <summary>
+ /// Index by the premiere date.
+ /// </summary>
+ PremiereDate,
+
+ /// <summary>
+ /// Index by the production year.
+ /// </summary>
+ ProductionYear,
+
+ /// <summary>
+ /// Index by the community rating.
+ /// </summary>
+ CommunityRating
+ }
+}