mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-26 12:07:11 +08:00
14 lines
336 B
Dart
14 lines
336 B
Dart
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?,
|
|
);
|
|
}
|