Files
YungR1otz/lib/features/profile/domain/models/profile_stats_model.dart
Lucas Saburido cabf2025cd first commit
2026-05-13 16:26:45 +01:00

12 lines
233 B
Dart

class ProfileStatsModel {
const ProfileStatsModel({
required this.postsCount,
required this.commentsCount,
required this.tracksCount,
});
final int postsCount;
final int commentsCount;
final int tracksCount;
}