diff options
| author | JPVenson <6794763+JPVenson@users.noreply.github.com> | 2024-10-08 13:18:48 +0000 |
|---|---|---|
| committer | JPVenson <6794763+JPVenson@users.noreply.github.com> | 2024-10-08 13:18:48 +0000 |
| commit | d5409a26ea9eb8b7e149c62b6a1a9293726f4be2 (patch) | |
| tree | 13d2d75f027bb522201fa8008ab421e55330d8f7 /Jellyfin.Data/Entities/Chapter.cs | |
| parent | 6c819fe516ba742f1dcc77d61f6eedbe987cd692 (diff) | |
WIP Search refactoring and Provider ID refactoring
Diffstat (limited to 'Jellyfin.Data/Entities/Chapter.cs')
| -rw-r--r-- | Jellyfin.Data/Entities/Chapter.cs | 2 |
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; } |
