member audio

member comic

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-22 21:23:25 +08:00
parent c6a377b9d4
commit 79e30047f5
19 changed files with 640 additions and 33 deletions

View 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?,
);
}