mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-04 17:17:48 +08:00
9
lib/models_new/space/space/cover.dart
Normal file
9
lib/models_new/space/space/cover.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
class Cover {
|
||||
String? url;
|
||||
|
||||
Cover({this.url});
|
||||
|
||||
factory Cover.fromJson(Map<String, dynamic> json) => Cover(
|
||||
url: json['url'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user