profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
TasteSnapshot.java 333 bytes
1 package com.tasteprint.progress;
2
3 import java.util.List;
4
5 import com.tasteprint.catalog.DishView;
6 import com.tasteprint.tasting.TastingView;
7
8 public record TasteSnapshot(
9 TasteStats stats,
10 List<DestinationProgress> destinations,
11 List<DishView> importantMissing,
12 List<TastingView> recentTastings
13 ) {
14 }
15