aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Enums/PersonRoleType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Enums/PersonRoleType.cs')
-rw-r--r--Jellyfin.Data/Enums/PersonRoleType.cs18
1 files changed, 18 insertions, 0 deletions
diff --git a/Jellyfin.Data/Enums/PersonRoleType.cs b/Jellyfin.Data/Enums/PersonRoleType.cs
new file mode 100644
index 000000000..6e52f2c85
--- /dev/null
+++ b/Jellyfin.Data/Enums/PersonRoleType.cs
@@ -0,0 +1,18 @@
+namespace Jellyfin.Data.Enums
+{
+ public enum PersonRoleType
+ {
+ Other,
+ Director,
+ Artist,
+ OriginalArtist,
+ Actor,
+ VoiceActor,
+ Producer,
+ Remixer,
+ Conductor,
+ Composer,
+ Author,
+ Editor
+ }
+}