mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 11:22:16 +08:00
13
lib/models_new/pgc/pgc_review/stat.dart
Normal file
13
lib/models_new/pgc/pgc_review/stat.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class Stat {
|
||||
int? disliked;
|
||||
int? liked;
|
||||
int? likes;
|
||||
|
||||
Stat({this.disliked, this.liked, this.likes});
|
||||
|
||||
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
||||
disliked: json['disliked'] as int?,
|
||||
liked: json['liked'] as int?,
|
||||
likes: json['likes'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user