forked from ReiMerc/skantravels
15 lines
205 B
Dart
15 lines
205 B
Dart
class Favorite {
|
|
int id;
|
|
String userId;
|
|
double lat;
|
|
double lng;
|
|
|
|
Favorite(this.id, this.userId, this.lat, this.lng);
|
|
}
|
|
|
|
class Login {
|
|
String id;
|
|
String token;
|
|
|
|
Login(this.id, this.token);
|
|
} |