mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
23 lines
565 B
Dart
23 lines
565 B
Dart
class Stat {
|
|
int? danmaku;
|
|
int? follow;
|
|
int? seriesFollow;
|
|
int? view;
|
|
|
|
Stat({this.danmaku, this.follow, this.seriesFollow, this.view});
|
|
|
|
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
|
danmaku: json['danmaku'] as int?,
|
|
follow: (json['follow'] as int?) ?? 0,
|
|
seriesFollow: json['series_follow'] as int?,
|
|
view: (json['view'] as int?) ?? 0,
|
|
);
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'danmaku': danmaku,
|
|
'follow': follow,
|
|
'series_follow': seriesFollow,
|
|
'view': view,
|
|
};
|
|
}
|