mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
20 lines
469 B
C#
20 lines
469 B
C#
using Kavita.Models.Entities.Enums;
|
|
|
|
namespace Kavita.Models.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; }
|
|
}
|