diff --git a/Jellyfin.Data/Entities/Chapter.cs b/Jellyfin.Data/Entities/Chapter.cs index a55b7fb538..579442cdb6 100644 --- a/Jellyfin.Data/Entities/Chapter.cs +++ b/Jellyfin.Data/Entities/Chapter.cs @@ -1,24 +1,44 @@ using System; -using System.Collections.Generic; -using System.ComponentModel.DataAnnotations; -using System.ComponentModel.DataAnnotations.Schema; namespace Jellyfin.Data.Entities; -#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member +/// +/// The Chapter entity. +/// public class Chapter { + /// + /// Gets or Sets the reference id. + /// public required Guid ItemId { get; set; } + /// + /// Gets or Sets the reference. + /// public required BaseItemEntity Item { get; set; } + /// + /// Gets or Sets the chapters index in Item. + /// public required int ChapterIndex { get; set; } + /// + /// Gets or Sets the position within the source file. + /// public required long StartPositionTicks { get; set; } + /// + /// Gets or Sets the common name. + /// public string? Name { get; set; } + /// + /// Gets or Sets the image path. + /// public string? ImagePath { get; set; } + /// + /// Gets or Sets the time the image was last modified. + /// public DateTime? ImageDateModified { get; set; } }