profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
TastingPage.java 232 bytes
1 package com.tasteprint.tasting;
2
3 import java.util.List;
4
5 public record TastingPage(
6 List<TastingView> items,
7 int page,
8 int size,
9 long totalItems,
10 int totalPages,
11 boolean hasMore
12 ) {
13 }
14