mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 19:28:27 +08:00
12 lines
188 B
Dart
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?,
|
|
);
|
|
}
|