using System; using System.Collections.Generic; namespace API.DTOs.Statistics; public class UserReadStatistics { /// /// Total number of pages read /// public long TotalPagesRead { get; set; } /// /// Total number of words read /// public long TotalWordsRead { get; set; } /// /// Total time spent reading based on estimates /// public long TimeSpentReading { get; set; } public long ChaptersRead { get; set; } public DateTime LastActive { get; set; } public double AvgHoursPerWeekSpentReading { get; set; } public IEnumerable> PercentReadPerLibrary { get; set; } }