skantravels/Mobile/lib/models.dart

9 lines
193 B
Dart
Raw Normal View History

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);
}