mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-06 18:30:57 +00:00
12 lines
331 B
Java
12 lines
331 B
Java
![]() |
package stirling.software.SPDF.model.api;
|
||
|
|
||
|
import org.springframework.web.multipart.MultipartFile;
|
||
|
|
||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||
|
import lombok.Data;
|
||
|
@Data
|
||
|
public class MultiplePDFFiles {
|
||
|
@Schema(description = "The input PDF files", type = "array", format = "binary")
|
||
|
private MultipartFile[] fileInput;
|
||
|
}
|