mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-26 20:16:26 +08:00
12 lines
263 B
Dart
12 lines
263 B
Dart
class AttentionTip {
|
|
int? cardNum;
|
|
String? tip;
|
|
|
|
AttentionTip({this.cardNum, this.tip});
|
|
|
|
factory AttentionTip.fromJson(Map<String, dynamic> json) => AttentionTip(
|
|
cardNum: json['card_num'] as int?,
|
|
tip: json['tip'] as String?,
|
|
);
|
|
}
|