skantravels/Mobile/lib/models.dart
2024-08-22 10:20:59 +02:00

8 lines
128 B
Dart

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