14 lines
218 B
Dart
14 lines
218 B
Dart
// lib/models/activity.model.dart
|
|
class Activity {
|
|
String name;
|
|
String image;
|
|
String? id;
|
|
String city;
|
|
Activity({
|
|
required this.name,
|
|
required this.city,
|
|
this.id,
|
|
required this.image,
|
|
});
|
|
}
|