using System.Collections.Generic; namespace API.DTOs.Statistics; #nullable enable public class 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; } public IEnumerable>? MostReadSeries { get; set; } /// /// Total users who have started/reading/read per series /// public IEnumerable>? MostPopularSeries { get; set; } public IEnumerable>? MostActiveUsers { get; set; } public IEnumerable>? MostActiveLibraries { get; set; } /// /// Last 5 Series read /// public IEnumerable? RecentlyRead { get; set; } }