mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-25 21:05:52 +08:00
15
lib/models_new/pgc/pgc_info_model/new_ep.dart
Normal file
15
lib/models_new/pgc/pgc_info_model/new_ep.dart
Normal file
@@ -0,0 +1,15 @@
|
||||
class NewEp {
|
||||
String? desc;
|
||||
int? id;
|
||||
int? isNew;
|
||||
String? title;
|
||||
|
||||
NewEp({this.desc, this.id, this.isNew, this.title});
|
||||
|
||||
factory NewEp.fromJson(Map<String, dynamic> json) => NewEp(
|
||||
desc: json['desc'] as String?,
|
||||
id: json['id'] as int?,
|
||||
isNew: json['is_new'] as int?,
|
||||
title: json['title'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user