mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-12-22 12:57:22 -05:00
18 lines
511 B
C#
18 lines
511 B
C#
using System.Collections.Generic;
|
|
|
|
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; }
|
|
}
|