aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data
diff options
context:
space:
mode:
authorSeven Rats <79296037+sevenrats@users.noreply.github.com>2026-05-03 06:18:20 -0400
committerGitHub <noreply@github.com>2026-05-03 12:18:20 +0200
commitf5f75ed2e1b10dc1f4e55d5cdd9dd7fd69ea8f2b (patch)
tree8049df344dbcf64dd35ec2bae5a9bd1ef9c3b1a1 /Jellyfin.Data
parentdf6f706c2f632b9e1eeeabccf5511ab24f317633 (diff)
feat/audiobook_chapters (#16518)
feat/audiobook_chapters
Diffstat (limited to 'Jellyfin.Data')
-rw-r--r--Jellyfin.Data/Enums/PersonKind.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Jellyfin.Data/Enums/PersonKind.cs b/Jellyfin.Data/Enums/PersonKind.cs
index 29308789a0..54eac5ff3b 100644
--- a/Jellyfin.Data/Enums/PersonKind.cs
+++ b/Jellyfin.Data/Enums/PersonKind.cs
@@ -129,5 +129,10 @@ public enum PersonKind
/// <summary>
/// A person who renders a text from one language into another.
/// </summary>
- Translator
+ Translator,
+
+ /// <summary>
+ /// A person who narrates a book or other work.
+ /// </summary>
+ Narrator
}