aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Chapter.cs
diff options
context:
space:
mode:
authorJPVenson <6794763+JPVenson@users.noreply.github.com>2024-10-08 13:18:48 +0000
committerJPVenson <6794763+JPVenson@users.noreply.github.com>2024-10-08 13:18:48 +0000
commitd5409a26ea9eb8b7e149c62b6a1a9293726f4be2 (patch)
tree13d2d75f027bb522201fa8008ab421e55330d8f7 /Jellyfin.Data/Entities/Chapter.cs
parent6c819fe516ba742f1dcc77d61f6eedbe987cd692 (diff)
WIP Search refactoring and Provider ID refactoring
Diffstat (limited to 'Jellyfin.Data/Entities/Chapter.cs')
-rw-r--r--Jellyfin.Data/Entities/Chapter.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Jellyfin.Data/Entities/Chapter.cs b/Jellyfin.Data/Entities/Chapter.cs
index 6822b1902..ad119d1c6 100644
--- a/Jellyfin.Data/Entities/Chapter.cs
+++ b/Jellyfin.Data/Entities/Chapter.cs
@@ -10,6 +10,8 @@ public class Chapter
{
public Guid ItemId { get; set; }
+ public required BaseItem Item { get; set; }
+
public required int ChapterIndex { get; set; }
public required long StartPositionTicks { get; set; }