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