class SocialPost { final String userName; final String userImage; final String postText; final String postImage; final int likes; final int comments; final int shares; final List badges; // Gamification badges final List tags; // Ajout de tags pour personnalisation des posts SocialPost({ required this.userName, required this.userImage, required this.postText, required this.postImage, required this.likes, required this.comments, required this.shares, required this.badges, this.tags = const [], }); }