PublicTasteSnapshot.java
395 bytes
| 1 | package com.tasteprint.social; |
|---|---|
| 2 | |
| 3 | import java.util.List; |
| 4 | |
| 5 | import com.tasteprint.catalog.DishView; |
| 6 | import com.tasteprint.progress.DestinationProgress; |
| 7 | import com.tasteprint.progress.TasteStats; |
| 8 | |
| 9 | public record PublicTasteSnapshot( |
| 10 | TasteStats stats, |
| 11 | List<DestinationProgress> destinations, |
| 12 | List<DishView> importantMissing, |
| 13 | List<PublicTastingView> recentTastings |
| 14 | ) { |
| 15 | } |
| 16 | |