Kavita/Kavita.Models/Entities/ServerStatistics.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

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; }
}