18 lines
494 B
Dart
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);
|
|
}
|