Files
PiliPlus/lib/models_new/later/stat.dart
2026-04-05 12:11:22 +08:00

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