mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-29 14:56:29 +08:00
16 lines
242 B
Dart
16 lines
242 B
Dart
class CntInfo {
|
|
int? play;
|
|
int? danmaku;
|
|
|
|
CntInfo({
|
|
this.play,
|
|
|
|
this.danmaku,
|
|
});
|
|
|
|
factory CntInfo.fromJson(Map<String, dynamic> json) => CntInfo(
|
|
play: json['play'] as int?,
|
|
danmaku: json['danmaku'] as int?,
|
|
);
|
|
}
|