mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-25 19:32:00 +00:00
14 lines
288 B
Java
14 lines
288 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 GeneralFile {
|
||
|
|
||
|
@Schema(description = "The input file")
|
||
|
private MultipartFile fileInput;
|
||
|
}
|