Files
PiliPlus/lib/models_new/space/space/play_game.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

12 lines
244 B
Dart

class PlayGame {
int? count;
List<dynamic>? item;
PlayGame({this.count, this.item});
factory PlayGame.fromJson(Map<String, dynamic> json) => PlayGame(
count: json['count'] as int?,
item: json['item'] as List<dynamic>?,
);
}