Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-17 18:08:55 +08:00
parent 906c21e252
commit 1d4eabb770
58 changed files with 875 additions and 684 deletions

View File

@@ -4,17 +4,17 @@ part 'entrance.g.dart';
@JsonSerializable()
class Entrance {
String? icon;
@JsonKey(name: 'jump_url')
String? jumpUrl;
@JsonKey(name: 'is_show_entrance')
bool? isShowEntrance;
String? icon;
@JsonKey(name: 'jump_url')
String? jumpUrl;
@JsonKey(name: 'is_show_entrance')
bool? isShowEntrance;
Entrance({this.icon, this.jumpUrl, this.isShowEntrance});
Entrance({this.icon, this.jumpUrl, this.isShowEntrance});
factory Entrance.fromJson(Map<String, dynamic> json) {
return _$EntranceFromJson(json);
}
factory Entrance.fromJson(Map<String, dynamic> json) {
return _$EntranceFromJson(json);
}
Map<String, dynamic> toJson() => _$EntranceToJson(this);
Map<String, dynamic> toJson() => _$EntranceToJson(this);
}