Files
PiliPlus/lib/models_new/pgc/pgc_rank/stat.dart
2026-04-05 12:11:22 +08:00

12 lines
226 B
Dart

class Stat {
int? follow;
int? view;
Stat({this.follow, this.view});
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
follow: (json['follow'] as int?) ?? 0,
view: (json['view'] as int?) ?? 0,
);
}