26 lines
734 B
C#
26 lines
734 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace API.DTOs.Statistics;
|
|
#nullable enable
|
|
|
|
public class UserReadStatistics
|
|
{
|
|
/// <summary>
|
|
/// Total number of pages read
|
|
/// </summary>
|
|
public long TotalPagesRead { get; set; }
|
|
/// <summary>
|
|
/// Total number of words read
|
|
/// </summary>
|
|
public long TotalWordsRead { get; set; }
|
|
/// <summary>
|
|
/// Total time spent reading based on estimates
|
|
/// </summary>
|
|
public long TimeSpentReading { get; set; }
|
|
public long ChaptersRead { get; set; }
|
|
public DateTime LastActive { get; set; }
|
|
public double AvgHoursPerWeekSpentReading { get; set; }
|
|
public IEnumerable<StatCount<float>>? PercentReadPerLibrary { get; set; }
|
|
|
|
}
|