aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PersonRoleType.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/Enums/PersonRoleType.cs
parentb318f335991167102a5fa8d65030d200bbec898d (diff)
Prepared Seperation of Database components for future multi provider support
Diffstat (limited to 'Jellyfin.Data/Enums/PersonRoleType.cs')
-rw-r--r--Jellyfin.Data/Enums/PersonRoleType.cs68
1 files changed, 0 insertions, 68 deletions
diff --git a/Jellyfin.Data/Enums/PersonRoleType.cs b/Jellyfin.Data/Enums/PersonRoleType.cs
deleted file mode 100644
index 1e619f5ee..000000000
--- a/Jellyfin.Data/Enums/PersonRoleType.cs
+++ /dev/null
@@ -1,68 +0,0 @@
-namespace Jellyfin.Data.Enums
-{
- /// <summary>
- /// An enum representing a person's role in a specific media item.
- /// </summary>
- public enum PersonRoleType
- {
- /// <summary>
- /// Another role, not covered by the other types.
- /// </summary>
- Other = 0,
-
- /// <summary>
- /// The director of the media.
- /// </summary>
- Director = 1,
-
- /// <summary>
- /// An artist.
- /// </summary>
- Artist = 2,
-
- /// <summary>
- /// The original artist.
- /// </summary>
- OriginalArtist = 3,
-
- /// <summary>
- /// An actor.
- /// </summary>
- Actor = 4,
-
- /// <summary>
- /// A voice actor.
- /// </summary>
- VoiceActor = 5,
-
- /// <summary>
- /// A producer.
- /// </summary>
- Producer = 6,
-
- /// <summary>
- /// A remixer.
- /// </summary>
- Remixer = 7,
-
- /// <summary>
- /// A conductor.
- /// </summary>
- Conductor = 8,
-
- /// <summary>
- /// A composer.
- /// </summary>
- Composer = 9,
-
- /// <summary>
- /// An author.
- /// </summary>
- Author = 10,
-
- /// <summary>
- /// An editor.
- /// </summary>
- Editor = 11
- }
-}