SteamCloudGame/lib/beans/game_info_recommend_bean.g.dart
2024-11-23 15:25:11 +08:00

24 lines
749 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'game_info_recommend_bean.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
GameInfoRecommendBean _$GameInfoRecommendBeanFromJson(
Map<String, dynamic> json) =>
GameInfoRecommendBean(
json['gameId'] as String?,
json['gameName'] as String?,
json['gameIconImage'] as String?,
);
Map<String, dynamic> _$GameInfoRecommendBeanToJson(
GameInfoRecommendBean instance) =>
<String, dynamic>{
'gameId': instance.gameId,
'gameName': instance.gameName,
'gameIconImage': instance.gameIconImage,
};