projet debut
This commit is contained in:
13
my_travel/lib/models/activity.model.dart
Normal file
13
my_travel/lib/models/activity.model.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
// 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,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user