mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-20 22:10:33 -04:00
19 lines
444 B
C#
19 lines
444 B
C#
namespace API.DTOs.Statistics;
|
|
#nullable enable
|
|
|
|
public class TopReadDto
|
|
{
|
|
public int UserId { get; set; }
|
|
public string? Username { get; set; } = default!;
|
|
/// <summary>
|
|
/// Amount of time read on Comic libraries
|
|
/// </summary>
|
|
public long ComicsTime { get; set; }
|
|
/// <summary>
|
|
/// Amount of time read on
|
|
/// </summary>
|
|
public long BooksTime { get; set; }
|
|
public long MangaTime { get; set; }
|
|
}
|
|
|