mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 15:30:34 -04:00
20 lines
450 B
C#
20 lines
450 B
C#
using API.Entities.Enums;
|
|
|
|
namespace API.DTOs.Statistics;
|
|
|
|
public sealed record PagesReadOnADayCount<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; }
|
|
}
|