Kavita/Kavita.Models/DTOs/Statistics/MostActiveUserDto.cs
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

22 lines
569 B
C#

using System.Collections.Generic;
namespace Kavita.Models.DTOs.Statistics;
#nullable enable
public sealed record MostActiveUserDto
{
public int UserId { get; set; }
public string Username { get; set; }
public string? CoverImage { get; set; }
public int TimePeriodHours { get; set; }
public int TotalHours { get; set; }
public int TotalComics { get; set; }
public int TotalBooks { get; set; }
/// <summary>
/// Top 5 most read series for the time period
/// </summary>
public IList<SeriesDto> TopSeries { get; set; }
}