mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-07 18:47:50 +08:00
11
lib/models_new/space/space/comic.dart
Normal file
11
lib/models_new/space/space/comic.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class Comic {
|
||||
int? count;
|
||||
List<dynamic>? item;
|
||||
|
||||
Comic({this.count, this.item});
|
||||
|
||||
factory Comic.fromJson(Map<String, dynamic> json) => Comic(
|
||||
count: json['count'] as int?,
|
||||
item: json['item'] as List<dynamic>?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user