mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-16 00:50:24 -05:00
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com> Co-authored-by: DieselTech <30128380+DieselTech@users.noreply.github.com> Co-authored-by: Alex George <xzeroknightx@gmail.com> Co-authored-by: Lucas Winther <lucasw89@live.dk> Co-authored-by: Toni Kielo <toni.kielo@gmail.com> Co-authored-by: Patrick Orave <oravep@gmail.com>
16 lines
476 B
C#
16 lines
476 B
C#
namespace API.DTOs.Statistics;
|
|
#nullable enable
|
|
|
|
public sealed record ServerStatisticsDto
|
|
{
|
|
public long ChapterCount { get; set; }
|
|
public long VolumeCount { get; set; }
|
|
public long SeriesCount { get; set; }
|
|
public long TotalFiles { get; set; }
|
|
public long TotalSize { get; set; }
|
|
public long TotalGenres { get; set; }
|
|
public long TotalTags { get; set; }
|
|
public long TotalPeople { get; set; }
|
|
public long TotalReadingTime { get; set; }
|
|
}
|