using System.Collections.Generic;
namespace API.DTOs.Statistics;
public class TopReadDto
{
public int UserId { get; set; }
public string Username { get; set; }
///
/// 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; }
}