mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 16:46:22 +08:00
12 lines
275 B
Dart
12 lines
275 B
Dart
class Freya {
|
|
int? bubbleShowCnt;
|
|
int? iconShow;
|
|
|
|
Freya({this.bubbleShowCnt, this.iconShow});
|
|
|
|
factory Freya.fromJson(Map<String, dynamic> json) => Freya(
|
|
bubbleShowCnt: json['bubble_show_cnt'] as int?,
|
|
iconShow: json['icon_show'] as int?,
|
|
);
|
|
}
|