mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 09:06:36 +08:00
12 lines
245 B
Dart
12 lines
245 B
Dart
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?,
|
|
);
|
|
}
|