TastingView.java
476 bytes
| 1 | package com.tasteprint.tasting; |
|---|---|
| 2 | |
| 3 | import java.time.Instant; |
| 4 | import java.time.LocalDate; |
| 5 | import java.util.UUID; |
| 6 | |
| 7 | import com.tasteprint.catalog.DishView; |
| 8 | |
| 9 | public record TastingView( |
| 10 | UUID id, |
| 11 | DishView dish, |
| 12 | String restaurantName, |
| 13 | String city, |
| 14 | String countryCode, |
| 15 | LocalDate tastedOn, |
| 16 | int rating, |
| 17 | String note, |
| 18 | String photoUrl, |
| 19 | Double latitude, |
| 20 | Double longitude, |
| 21 | Instant createdAt |
| 22 | ) { |
| 23 | } |
| 24 | |