Files
PiliPlus/lib/models_new/pgc/pgc_index_result/first_ep.dart
bggRGjQaUbCoE 418a1e8d39 reformat
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-07-23 16:47:11 +08:00

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?,
);
}