Kavita/API/DTOs/Statistics/PagesReadOnADayCount.cs
2025-05-04 07:14:44 -07:00

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