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 | |