Files
PiliPlus/lib/models_new/fav/fav_pgc/new_ep.dart
2026-04-05 12:11:22 +08:00

12 lines
188 B
Dart

class NewEp {
String? indexShow;
NewEp({
this.indexShow,
});
factory NewEp.fromJson(Map<String, dynamic> json) => NewEp(
indexShow: json['index_show'] as String?,
);
}