mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 01:56:47 +08:00
member audio
member comic Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
17
lib/models_new/space/space_audio/statistic.dart
Normal file
17
lib/models_new/space/space_audio/statistic.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user