2026-03-06 17:28:52 +07:00
|
|
|
package ru.soune.nocopy.dto.search;
|
|
|
|
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
public class GlobalSearchStatusResponse {
|
|
|
|
|
private String taskId;
|
|
|
|
|
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
private String searchType;
|
|
|
|
|
|
|
|
|
|
private Integer progress;
|
|
|
|
|
|
2026-03-07 02:25:43 +07:00
|
|
|
private List<GlobalSearchFileResult> results;
|
2026-03-06 17:28:52 +07:00
|
|
|
}
|