mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-21 16:48:43 +00:00
11
lib/models_new/pgc/pgc_rank/new_ep.dart
Normal file
11
lib/models_new/pgc/pgc_rank/new_ep.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class NewEp {
|
||||
String? cover;
|
||||
String? indexShow;
|
||||
|
||||
NewEp({this.cover, this.indexShow});
|
||||
|
||||
factory NewEp.fromJson(Map<String, dynamic> json) => NewEp(
|
||||
cover: json['cover'] as String?,
|
||||
indexShow: json['index_show'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user