mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
18 lines
477 B
C#
18 lines
477 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Kavita.Models.DTOs.Statistics;
|
|
#nullable enable
|
|
|
|
public sealed record ReadingActivityGraphEntryDto
|
|
{
|
|
public DateTime Date { get; set; }
|
|
|
|
public int TotalTimeReadingSeconds { get; set; }
|
|
public int TotalPages { get; set; }
|
|
public int TotalWords { get; set; }
|
|
public int TotalChaptersFullyRead { get; set; }
|
|
}
|
|
|
|
public class ReadingActivityGraphDto : Dictionary<string, ReadingActivityGraphEntryDto>;
|