projet debut

This commit is contained in:
felix-vi
2025-10-14 12:29:11 +02:00
parent c642a6f914
commit 5d1d2f4498
16 changed files with 256 additions and 20 deletions

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