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

14 lines
416 B
Dart

class Preference {
bool? collectionPublic;
String? garbFirstGain;
int? orderType;
Preference({this.collectionPublic, this.garbFirstGain, this.orderType});
factory Preference.fromJson(Map<String, dynamic> json) => Preference(
collectionPublic: json['collection_public'] as bool?,
garbFirstGain: json['garb_first_gain'] as String?,
orderType: json['order_type'] as int?,
);
}