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