profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
DishView.java 447 bytes
1 package com.tasteprint.catalog;
2
3 public record DishView(
4 String slug,
5 String destinationCode,
6 String destinationName,
7 String destinationAccent,
8 String name,
9 String localName,
10 DishCategory category,
11 String categoryLabel,
12 String description,
13 String whyItMatters,
14 int importance,
15 String imageUrl,
16 boolean vegetarian,
17 int spicyLevel
18 ) {
19 }
20