mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 18:16:54 +08:00
12 lines
256 B
Dart
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>?,
|
|
);
|
|
}
|