first commit

This commit is contained in:
Lucas Saburido
2026-05-13 16:26:45 +01:00
commit cabf2025cd
252 changed files with 13524 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import '../../../feed/domain/models/feed_post_model.dart';
import '../../../music/domain/models/track_model.dart';
import 'trending_user_model.dart';
class DiscoverDataModel {
const DiscoverDataModel({
required this.trendingUsers,
required this.trendingPosts,
required this.trendingTracks,
});
final List<TrendingUserModel> trendingUsers;
final List<FeedPostModel> trendingPosts;
final List<TrackModel> trendingTracks;
}