mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 16:46:22 +08:00
12 lines
227 B
Dart
12 lines
227 B
Dart
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?,
|
|
);
|
|
}
|