Kavita/API/DTOs/Statistics/PagesReadOnADayCount.cs
Joe Milazzo e1f421ccc0
Stats Page Overhaul (#4292)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2025-12-19 12:23:55 -08:00

20 lines
449 B
C#

using API.Entities.Enums;
namespace API.DTOs.Statistics;
public sealed record StatCountWithFormat<T> : ICount<T>
{
/// <summary>
/// The day of the readings
/// </summary>
public T Value { get; set; } = default!;
/// <summary>
/// Number of pages read
/// </summary>
public long Count { get; set; }
/// <summary>
/// Format of those files
/// </summary>
public MangaFormat Format { get; set; }
}