Skip to content

Instantly share code, notes, and snippets.

@isatimur
Created October 15, 2018 12:54
Show Gist options
  • Save isatimur/1045955a848c591b2618f9aba2cf27ab to your computer and use it in GitHub Desktop.
Save isatimur/1045955a848c591b2618f9aba2cf27ab to your computer and use it in GitHub Desktop.
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Page<T> {
private int page;
private int size;
private int totalSize;
private List<T> entities;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment