mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-25 19:46:47 +08:00
opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
16
lib/models/pgc/pgc_rank/new_ep.dart
Normal file
16
lib/models/pgc/pgc_rank/new_ep.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
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?,
|
||||
);
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'cover': cover,
|
||||
'index_show': indexShow,
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user