Fesaa c62b20f54b
BE Tech Debt (#4497)
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com>
Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
2026-03-07 10:04:08 -08:00

19 lines
465 B
C#

namespace Kavita.Models.DTOs.Statistics;
#nullable enable
public sealed record TopReadDto
{
public int UserId { get; set; }
public string? Username { get; set; } = default!;
/// <summary>
/// Amount of time read on Comic libraries
/// </summary>
public float ComicsTime { get; set; }
/// <summary>
/// Amount of time read on
/// </summary>
public float BooksTime { get; set; }
public float MangaTime { get; set; }
}