mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-27 22:10:14 +08:00
13
lib/models_new/space/space/achieve.dart
Normal file
13
lib/models_new/space/space/achieve.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class Achieve {
|
||||
bool? isDefault;
|
||||
String? image;
|
||||
String? achieveUrl;
|
||||
|
||||
Achieve({this.isDefault, this.image, this.achieveUrl});
|
||||
|
||||
factory Achieve.fromJson(Map<String, dynamic> json) => Achieve(
|
||||
isDefault: json['is_default'] as bool?,
|
||||
image: json['image'] as String?,
|
||||
achieveUrl: json['achieve_url'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user