Files
PiliPlus/lib/models_new/space/space/entrance.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

14 lines
345 B
Dart

class Entrance {
String? icon;
String? jumpUrl;
bool? isShowEntrance;
Entrance({this.icon, this.jumpUrl, this.isShowEntrance});
factory Entrance.fromJson(Map<String, dynamic> json) => Entrance(
icon: json['icon'] as String?,
jumpUrl: json['jump_url'] as String?,
isShowEntrance: json['is_show_entrance'] as bool?,
);
}