using API.Entities.Enums;
namespace API.DTOs.Stats;
public class FileFormatDto
{
///
/// The extension with the ., in lowercase
///
public required string Extension { get; set; }
///
/// Format of extension
///
public required MangaFormat Format { get; set; }
}