Stats Page Overhaul (#4292)

Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
This commit is contained in:
Joe Milazzo
2025-12-19 13:23:55 -07:00
committed by GitHub
parent 20197fa712
commit e1f421ccc0
175 changed files with 12122 additions and 5746 deletions
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using API.Entities.Enums;
using Microsoft.EntityFrameworkCore;
namespace API.Entities.Progress;
@@ -11,12 +12,15 @@ public class AppUserReadingSessionActivityData
public int AppUserReadingSessionId { get; set; }
public AppUserReadingSession ReadingSession { get; set; }
public MangaFormat Format { get; set; }
public int ChapterId { get; set; }
public virtual Chapter Chapter { get; set; }
public int VolumeId { get; set; }
public virtual Volume Volume { get; set; }
public int SeriesId { get; set; }
public virtual Series Series { get; set; }
public int LibraryId { get; set; }
public virtual Library Library { get; set; }
public int StartPage { get; set; }
public int EndPage { get; set; }
public string? StartBookScrollId { get; set; }