mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 04:26:11 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
16 lines
467 B
C#
16 lines
467 B
C#
namespace Kavita.Models.Entities;
|
|
|
|
public class ServerStatistics
|
|
{
|
|
public int Id { get; set; }
|
|
public int Year { get; set; }
|
|
public long SeriesCount { get; set; }
|
|
public long VolumeCount { get; set; }
|
|
public long ChapterCount { get; set; }
|
|
public long FileCount { get; set; }
|
|
public long UserCount { get; set; }
|
|
public long GenreCount { get; set; }
|
|
public long PersonCount { get; set; }
|
|
public long TagCount { get; set; }
|
|
}
|