mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-06-05 14:25:17 -04:00
e1f421ccc0
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
20 lines
449 B
C#
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; }
|
|
}
|