feat : Posts in Event Details

This commit is contained in:
Yaël Perret
2025-08-08 17:49:03 +02:00
parent 29b10f81f5
commit 174f86e581
44 changed files with 584 additions and 79 deletions

View File

@@ -10,3 +10,15 @@ class EventDetailsViewModel extends BaseViewModel {
notifyListeners();
}
}
class Post {
final String id;
final String title;
final String content;
Post({
required this.id,
required this.title,
required this.content,
});
}