skantravels/Mobile/lib/models.dart
Sandertp d46deaf2cb More favorite changes
Co-authored-by: Reimar<mail@git.reim.ar>
2024-08-26 12:09:47 +02:00

9 lines
193 B
Dart

class Favorite {
int id;
String userId;
double lat;
double lng;
String name;
String description;
Favorite(this.id, this.userId, this.lat, this.lng, this.name, this.description);
}