mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 03:15:14 +08:00
12 lines
236 B
Dart
12 lines
236 B
Dart
class Statistic {
|
|
int? play;
|
|
int? comment;
|
|
|
|
Statistic({this.play, this.comment});
|
|
|
|
factory Statistic.fromJson(Map<String, dynamic> json) => Statistic(
|
|
play: json['play'] as int?,
|
|
comment: json['comment'] as int?,
|
|
);
|
|
}
|