mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-29 19:12:35 -04:00
Progress Overhaul + Profile Page and a LOT more! (#4262)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
This commit is contained in:
+12
-2
@@ -38,10 +38,15 @@ public class ChapterDto : IHasReadTimeEstimate, IHasCoverImage
|
||||
/// </summary>
|
||||
public ICollection<MangaFileDto> Files { get; init; } = default!;
|
||||
/// <summary>
|
||||
/// Calculated at API time. Number of pages read for this Chapter for logged in user.
|
||||
/// Calculated at API time. Number of pages read for this Chapter for logged-in user.
|
||||
/// </summary>
|
||||
public int PagesRead { get; set; }
|
||||
/// <summary>
|
||||
/// Total number of complete reads
|
||||
/// </summary>
|
||||
/// <remarks>Calculated at API-time</remarks>
|
||||
public int TotalReads { get; set; }
|
||||
/// <summary>
|
||||
/// The last time a chapter was read by current authenticated user
|
||||
/// </summary>
|
||||
public DateTime LastReadingProgressUtc { get; set; }
|
||||
@@ -152,7 +157,12 @@ public class ChapterDto : IHasReadTimeEstimate, IHasCoverImage
|
||||
public bool LocationLocked { get; set; }
|
||||
/// <inheritdoc cref="API.Entities.Chapter.CoverArtistLocked"/>
|
||||
public bool CoverArtistLocked { get; set; }
|
||||
public bool ReleaseYearLocked { get; set; }
|
||||
/// <inheritdoc cref="API.Entities.Chapter.ReleaseDateLocked"/>
|
||||
public bool ReleaseDateLocked { get; set; }
|
||||
/// <inheritdoc cref="API.Entities.Chapter.TitleNameLocked"/>
|
||||
public bool TitleNameLocked { get; set; }
|
||||
/// <inheritdoc cref="API.Entities.Chapter.SortOrderLocked"/>
|
||||
public bool SortOrderLocked { get; set; }
|
||||
|
||||
#endregion
|
||||
|
||||
|
||||
Reference in New Issue
Block a user