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