mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-06-06 18:30:57 +00:00
13 lines
289 B
Java
13 lines
289 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 ImageFile {
|
||
|
@Schema(description = "The input image file")
|
||
|
private MultipartFile fileInput;
|
||
|
}
|