aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ImageInfoImageType.cs
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-01-26 20:45:28 +0000
committerJPVenson <github@jpb.email>2025-01-26 20:45:28 +0000
commitaa811eb1e3c78bdf8f4a751311c1bb6d639e851e (patch)
tree9c492fcac3f1db65c2d308eabf0012c0b2f3b696 /Jellyfin.Data/Entities/ImageInfoImageType.cs
parentb318f335991167102a5fa8d65030d200bbec898d (diff)
Prepared Seperation of Database components for future multi provider support
Diffstat (limited to 'Jellyfin.Data/Entities/ImageInfoImageType.cs')
-rw-r--r--Jellyfin.Data/Entities/ImageInfoImageType.cs76
1 files changed, 0 insertions, 76 deletions
diff --git a/Jellyfin.Data/Entities/ImageInfoImageType.cs b/Jellyfin.Data/Entities/ImageInfoImageType.cs
deleted file mode 100644
index f78178dd22..0000000000
--- a/Jellyfin.Data/Entities/ImageInfoImageType.cs
+++ /dev/null
@@ -1,76 +0,0 @@
-namespace Jellyfin.Data.Entities;
-
-/// <summary>
-/// Enum ImageType.
-/// </summary>
-public enum ImageInfoImageType
-{
- /// <summary>
- /// The primary.
- /// </summary>
- Primary = 0,
-
- /// <summary>
- /// The art.
- /// </summary>
- Art = 1,
-
- /// <summary>
- /// The backdrop.
- /// </summary>
- Backdrop = 2,
-
- /// <summary>
- /// The banner.
- /// </summary>
- Banner = 3,
-
- /// <summary>
- /// The logo.
- /// </summary>
- Logo = 4,
-
- /// <summary>
- /// The thumb.
- /// </summary>
- Thumb = 5,
-
- /// <summary>
- /// The disc.
- /// </summary>
- Disc = 6,
-
- /// <summary>
- /// The box.
- /// </summary>
- Box = 7,
-
- /// <summary>
- /// The screenshot.
- /// </summary>
- /// <remarks>
- /// This enum value is obsolete.
- /// XmlSerializer does not serialize/deserialize objects that are marked as [Obsolete].
- /// </remarks>
- Screenshot = 8,
-
- /// <summary>
- /// The menu.
- /// </summary>
- Menu = 9,
-
- /// <summary>
- /// The chapter image.
- /// </summary>
- Chapter = 10,
-
- /// <summary>
- /// The box rear.
- /// </summary>
- BoxRear = 11,
-
- /// <summary>
- /// The user profile image.
- /// </summary>
- Profile = 12
-}