12 lines
233 B
Dart
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;
|
|
}
|