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

12 lines
224 B
Dart

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