using System.Collections.Generic;
using API.Entities.Enums;
namespace API.DTOs.Statistics;
#nullable enable
public sealed record FileExtensionDto
{
public string? Extension { get; set; }
public MangaFormat Format { get; set; }
public long TotalSize { get; set; }
public long TotalFiles { get; set; }
}
public sealed record FileExtensionBreakdownDto
{
///
/// Total bytes for all files
///
public long TotalFileSize { get; set; }
public IList FileBreakdown { get; set; } = default!;
}