mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
17 lines
361 B
Dart
17 lines
361 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?,
|
|
);
|
|
|
|
Map<String, dynamic> toJson() => {
|
|
'cover': cover,
|
|
'index_show': indexShow,
|
|
};
|
|
}
|