profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
PublicTastingView.java 350 bytes
1 package com.tasteprint.social;
2
3 import java.time.LocalDate;
4 import java.util.UUID;
5
6 import com.tasteprint.catalog.DishView;
7
8 public record PublicTastingView(
9 UUID id,
10 DishView dish,
11 String city,
12 String countryCode,
13 LocalDate tastedOn,
14 Integer rating,
15 String note,
16 String photoUrl
17 ) {
18 }
19