mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-02 16:19:44 +08:00
11
lib/models_new/pgc/pgc_index_result/first_ep.dart
Normal file
11
lib/models_new/pgc/pgc_index_result/first_ep.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class FirstEp {
|
||||
String? cover;
|
||||
int? epId;
|
||||
|
||||
FirstEp({this.cover, this.epId});
|
||||
|
||||
factory FirstEp.fromJson(Map<String, dynamic> json) => FirstEp(
|
||||
cover: json['cover'] as String?,
|
||||
epId: json['ep_id'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user