Files
PiliPlus/lib/models/bangumi/pgc_rank/new_ep.dart
bggRGjQaUbCoE 1e851d34b6 feat: new pgc rank
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-04-25 19:48:16 +08:00

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