Files
PiliPlus/lib/models_new/space/space/play_game.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

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