profileShare

rasmusjy / tasteprint

Read-only snapshot

No repository description.

main default branch 169 files Expires Sep 13, 2026, 9:06 AM
DestinationSummary.java 294 bytes
1 package com.tasteprint.catalog;
2
3 public record DestinationSummary(
4 String code,
5 String name,
6 String localName,
7 String regionName,
8 String summary,
9 double centerLat,
10 double centerLng,
11 String accentColor,
12 int dishCount
13 ) {
14 }
15