| 123456789101112131415161718 |
- import 'package:json_annotation/json_annotation.dart';
- import '../../bean/character_info.dart';
- part 'character_unlock_response.g.dart';
- @JsonSerializable()
- class CharacterUnlockResponse {
- @JsonKey(name: "characterInfos")
- late final List<CharacterInfo> characterInfo;
- CharacterUnlockResponse({ required this.characterInfo});
- factory CharacterUnlockResponse.fromJson(Map<String, dynamic> json) =>
- _$CharacterUnlockResponseFromJson(json);
- }
|