Files
PiliPlus/lib/models_new/fav/fav_detail/cnt_info.dart
2026-04-05 12:11:22 +08:00

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