Files
PiliPlus/lib/models_new/space/space_audio/statistic.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

18 lines
416 B
Dart

class Statistic {
int? sid;
int? play;
int? collect;
int? comment;
int? share;
Statistic({this.sid, this.play, this.collect, this.comment, this.share});
factory Statistic.fromJson(Map<String, dynamic> json) => Statistic(
sid: json['sid'] as int?,
play: json['play'] as int?,
collect: json['collect'] as int?,
comment: json['comment'] as int?,
share: json['share'] as int?,
);
}