mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-24 11:06:51 +08:00
11
lib/models_new/pgc/pgc_info_model/freya.dart
Normal file
11
lib/models_new/pgc/pgc_info_model/freya.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user