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

20 lines
515 B
Dart

import 'package:json_annotation/json_annotation.dart';
import 'game_play_times_bean.dart';
part 'game_play_time_bean.g.dart';
///
@JsonSerializable(explicitToJson: true)
class GamePlayTimeBean {
List<GamePlayTimeBeans>? gamePlayTimes;
GamePlayTimeBeans? userGamePlayTime;
GamePlayTimeBean(this.gamePlayTimes, this.userGamePlayTime);
factory GamePlayTimeBean.fromJson(Map<String, dynamic> json) => _$GamePlayTimeBeanFromJson(json);
Map<String, dynamic> toJson() => _$GamePlayTimeBeanToJson(this);
}