2025-12-22 14:07:44 +07:00
|
|
|
package ru.soune.nocopy.dto.file;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class ImageSearchRequest {
|
|
|
|
|
@JsonProperty("file_id")
|
|
|
|
|
private String fileId;
|
2026-02-10 11:58:32 +07:00
|
|
|
|
|
|
|
|
@JsonProperty("page")
|
|
|
|
|
private Integer page = 1;
|
|
|
|
|
|
|
|
|
|
@JsonProperty("page_size")
|
|
|
|
|
private Integer pageSize = 10;
|
2025-12-22 14:07:44 +07:00
|
|
|
}
|