mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 11:08:03 +08:00
18 lines
285 B
Dart
18 lines
285 B
Dart
class Stat {
|
|
int? aid;
|
|
int? view;
|
|
int? danmaku;
|
|
|
|
Stat({
|
|
this.aid,
|
|
this.view,
|
|
this.danmaku,
|
|
});
|
|
|
|
factory Stat.fromJson(Map<String, dynamic> json) => Stat(
|
|
aid: json['aid'] as int?,
|
|
view: json['view'] as int?,
|
|
danmaku: json['danmaku'] as int?,
|
|
);
|
|
}
|