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

10 lines
179 B
Dart

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