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