aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ItemValueType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/ItemValueType.cs')
-rw-r--r--Jellyfin.Data/Entities/ItemValueType.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/Jellyfin.Data/Entities/ItemValueType.cs b/Jellyfin.Data/Entities/ItemValueType.cs
deleted file mode 100644
index 3bae3becc..000000000
--- a/Jellyfin.Data/Entities/ItemValueType.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-#pragma warning disable CA1027 // Mark enums with FlagsAttribute
-namespace Jellyfin.Data.Entities;
-
-/// <summary>
-/// Provides the Value types for an <see cref="ItemValue"/>.
-/// </summary>
-public enum ItemValueType
-{
- /// <summary>
- /// Artists.
- /// </summary>
- Artist = 0,
-
- /// <summary>
- /// Album.
- /// </summary>
- AlbumArtist = 1,
-
- /// <summary>
- /// Genre.
- /// </summary>
- Genre = 2,
-
- /// <summary>
- /// Studios.
- /// </summary>
- Studios = 3,
-
- /// <summary>
- /// Tags.
- /// </summary>
- Tags = 4,
-
- /// <summary>
- /// InheritedTags.
- /// </summary>
- InheritedTags = 6,
-}