16 lines
388 B
Dart
16 lines
388 B
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
part 'game_user_info_bean.g.dart';
|
|
|
|
///
|
|
@JsonSerializable(explicitToJson: true)
|
|
class GameUserInfoBean {
|
|
bool? isCollect;
|
|
|
|
GameUserInfoBean(this.isCollect);
|
|
|
|
factory GameUserInfoBean.fromJson(Map<String, dynamic> json) => _$GameUserInfoBeanFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$GameUserInfoBeanToJson(this);
|
|
}
|