first commit
This commit is contained in:
11
lib/features/profile/domain/models/profile_stats_model.dart
Normal file
11
lib/features/profile/domain/models/profile_stats_model.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class ProfileStatsModel {
|
||||
const ProfileStatsModel({
|
||||
required this.postsCount,
|
||||
required this.commentsCount,
|
||||
required this.tracksCount,
|
||||
});
|
||||
|
||||
final int postsCount;
|
||||
final int commentsCount;
|
||||
final int tracksCount;
|
||||
}
|
||||
Reference in New Issue
Block a user