mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
* refactor: member page * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip * wip
19 lines
596 B
Dart
19 lines
596 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'attention_tip.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
AttentionTip _$AttentionTipFromJson(Map<String, dynamic> json) => AttentionTip(
|
|
cardNum: (json['card_num'] as num?)?.toInt(),
|
|
tip: json['tip'] as String?,
|
|
);
|
|
|
|
Map<String, dynamic> _$AttentionTipToJson(AttentionTip instance) =>
|
|
<String, dynamic>{
|
|
'card_num': instance.cardNum,
|
|
'tip': instance.tip,
|
|
};
|