mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-21 12:27:21 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
14 lines
383 B
C#
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; }
|
|
}
|