mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-27 13:55:54 +08:00
13
lib/models_new/space/space/preference.dart
Normal file
13
lib/models_new/space/space/preference.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
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?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user