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