Files
0xb00b5-packmate/src/main/java/ru/serega6531/packmate/model/Pagination.java

20 lines
545 B
Java
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
package ru.serega6531.packmate.model;
import lombok.Data;
import org.springframework.data.domain.Sort;
@Data
public class Pagination {
private Sort.Direction direction;
private long startingFrom;
private int pageSize;
private boolean favorites; // только для стримов, определяет, искать только избранные стримы или все
private Pattern pattern; // только для стримов, если не null, ищем стримы с этим паттерном
}