relatica/lib/models/engagement_summary.dart

16 lines
380 B
Dart
Raw Normal View History

2022-11-09 02:19:44 +00:00
class EngagementSummary {
final int favoritesCount;
final int rebloggedCount;
final int repliesCount;
const EngagementSummary(
{this.favoritesCount = 0,
this.rebloggedCount = 0,
this.repliesCount = 0});
2022-11-22 16:48:27 +00:00
@override
String toString() {
return 'EngagementSummary{#favs: $favoritesCount, #reshare: $rebloggedCount, #comments: $repliesCount}';
}
2022-11-09 02:19:44 +00:00
}