relatica/lib/models/engagement_summary.dart
2022-11-22 11:48:27 -05:00

15 lines
380 B
Dart

class EngagementSummary {
final int favoritesCount;
final int rebloggedCount;
final int repliesCount;
const EngagementSummary(
{this.favoritesCount = 0,
this.rebloggedCount = 0,
this.repliesCount = 0});
@override
String toString() {
return 'EngagementSummary{#favs: $favoritesCount, #reshare: $rebloggedCount, #comments: $repliesCount}';
}
}