aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/Chapter.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/Entities/Chapter.cs
parentb318f335991167102a5fa8d65030d200bbec898d (diff)
Prepared Seperation of Database components for future multi provider support
Diffstat (limited to 'Jellyfin.Data/Entities/Chapter.cs')
-rw-r--r--Jellyfin.Data/Entities/Chapter.cs44
1 files changed, 0 insertions, 44 deletions
diff --git a/Jellyfin.Data/Entities/Chapter.cs b/Jellyfin.Data/Entities/Chapter.cs
deleted file mode 100644
index 579442cdb..000000000
--- a/Jellyfin.Data/Entities/Chapter.cs
+++ /dev/null
@@ -1,44 +0,0 @@
-using System;
-
-namespace Jellyfin.Data.Entities;
-
-/// <summary>
-/// The Chapter entity.
-/// </summary>
-public class Chapter
-{
- /// <summary>
- /// Gets or Sets the <see cref="BaseItemEntity"/> reference id.
- /// </summary>
- public required Guid ItemId { get; set; }
-
- /// <summary>
- /// Gets or Sets the <see cref="BaseItemEntity"/> reference.
- /// </summary>
- public required BaseItemEntity Item { get; set; }
-
- /// <summary>
- /// Gets or Sets the chapters index in Item.
- /// </summary>
- public required int ChapterIndex { get; set; }
-
- /// <summary>
- /// Gets or Sets the position within the source file.
- /// </summary>
- public required long StartPositionTicks { get; set; }
-
- /// <summary>
- /// Gets or Sets the common name.
- /// </summary>
- public string? Name { get; set; }
-
- /// <summary>
- /// Gets or Sets the image path.
- /// </summary>
- public string? ImagePath { get; set; }
-
- /// <summary>
- /// Gets or Sets the time the image was last modified.
- /// </summary>
- public DateTime? ImageDateModified { get; set; }
-}