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

18 lines
494 B
Dart

import 'package:json_annotation/json_annotation.dart';
part 'game_info_recommend_bean.g.dart';
///
@JsonSerializable(explicitToJson: true)
class GameInfoRecommendBean {
String? gameId;
String? gameName;
String? gameIconImage;
GameInfoRecommendBean(this.gameId, this.gameName, this.gameIconImage);
factory GameInfoRecommendBean.fromJson(Map<String, dynamic> json) => _$GameInfoRecommendBeanFromJson(json);
Map<String, dynamic> toJson() => _$GameInfoRecommendBeanToJson(this);
}