using Microsoft.AspNetCore.Http; namespace line_gestao_api.Dtos { public class ImportExcelForm { public IFormFile File { get; set; } = default!; } }