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