clean up models

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-04-05 12:10:18 +08:00
parent b897103af0
commit 279f21857d
308 changed files with 156 additions and 6243 deletions

View File

@@ -6,7 +6,6 @@ class SpaceShopData {
String? clickUrl;
String? showMoreDesc;
bool? haveNextPage;
int? nextSearchAfter;
SpaceShopData({
this.data,
@@ -14,7 +13,6 @@ class SpaceShopData {
this.clickUrl,
this.showMoreDesc,
this.haveNextPage,
this.nextSearchAfter,
});
factory SpaceShopData.fromJson(Map<String, dynamic> json) => SpaceShopData(
@@ -25,6 +23,5 @@ class SpaceShopData {
clickUrl: json['clickUrl'] as String?,
showMoreDesc: json['showMoreDesc'] as String?,
haveNextPage: json['haveNextPage'] as bool?,
nextSearchAfter: json['nextSearchAfter'] as int?,
);
}