Files
PiliPlus/lib/models_new/space/space/display.dart
bggRGjQaUbCoE b960359a39 opt models
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-06-05 14:44:56 +08:00

21 lines
491 B
Dart

class Display {
String? bgThemeLight;
String? bgThemeNight;
String? nftPoster;
String? nftRaw;
Display({
this.bgThemeLight,
this.bgThemeNight,
this.nftPoster,
this.nftRaw,
});
factory Display.fromJson(Map<String, dynamic> json) => Display(
bgThemeLight: json['bg_theme_light'] as String?,
bgThemeNight: json['bg_theme_night'] as String?,
nftPoster: json['nft_poster'] as String?,
nftRaw: json['nft_raw'] as String?,
);
}