using System; using System.Collections.Generic; namespace API.DTOs.Statistics; public class UserReadStatistics { /// /// Total number of pages read /// public long TotalPagesRead { get; set; } /// /// Total time spent reading based on estimates /// public long TimeSpentReading { get; set; } /// /// A list of genres mapped with genre and number of series that fall into said genre /// public ICollection> FavoriteGenres { get; set; } public long ChaptersRead { get; set; } public DateTime LastActive { get; set; } public long AvgHoursPerWeekSpentReading { get; set; } }