mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
16 lines
364 B
Dart
16 lines
364 B
Dart
class CntInfo {
|
|
int? collect;
|
|
int? play;
|
|
int? danmaku;
|
|
int? vt;
|
|
|
|
CntInfo({this.collect, this.play, this.danmaku, this.vt});
|
|
|
|
factory CntInfo.fromJson(Map<String, dynamic> json) => CntInfo(
|
|
collect: json['collect'] as int?,
|
|
play: json['play'] as int?,
|
|
danmaku: json['danmaku'] as int?,
|
|
vt: json['vt'] as int?,
|
|
);
|
|
}
|