Kavita/API/DTOs/Progress/DailyReadingDataDto.cs
Joe Milazzo 9f29fa593d
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>
2025-12-09 10:00:11 -07:00

14 lines
383 B
C#

using System.Collections.Generic;
namespace API.DTOs.Progress;
public class DailyReadingDataDto
{
public int TotalMinutesRead { get; set; }
public int TotalPagesRead { get; set; }
public int TotalWordsRead { get; set; }
public int LongestSessionMinutes { get; set; }
public IList<int> SeriesIds { get; set; }
public IList<int> ChapterIds { get; set; }
}