8 lines
128 B
Dart
8 lines
128 B
Dart
class Favorite {
|
|
int id;
|
|
String userId;
|
|
double lat;
|
|
double lng;
|
|
|
|
Favorite(this.id, this.userId, this.lat, this.lng);
|
|
} |