aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/ArtKind.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Enums/ArtKind.cs')
-rw-r--r--Jellyfin.Data/Enums/ArtKind.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/Jellyfin.Data/Enums/ArtKind.cs b/Jellyfin.Data/Enums/ArtKind.cs
deleted file mode 100644
index f7a73848c..000000000
--- a/Jellyfin.Data/Enums/ArtKind.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-namespace Jellyfin.Data.Enums
-{
- /// <summary>
- /// An enum representing types of art.
- /// </summary>
- public enum ArtKind
- {
- /// <summary>
- /// Another type of art, not covered by the other members.
- /// </summary>
- Other = 0,
-
- /// <summary>
- /// A poster.
- /// </summary>
- Poster = 1,
-
- /// <summary>
- /// A banner.
- /// </summary>
- Banner = 2,
-
- /// <summary>
- /// A thumbnail.
- /// </summary>
- Thumbnail = 3,
-
- /// <summary>
- /// A logo.
- /// </summary>
- Logo = 4
- }
-}