mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-19 15:44:24 +08:00
@@ -1,16 +1,12 @@
|
||||
class PopularSeriesListItem {
|
||||
int? number;
|
||||
String? subject;
|
||||
int? status;
|
||||
String? name;
|
||||
|
||||
PopularSeriesListItem({this.number, this.subject, this.status, this.name});
|
||||
PopularSeriesListItem({this.number, this.name});
|
||||
|
||||
factory PopularSeriesListItem.fromJson(Map<String, dynamic> json) =>
|
||||
PopularSeriesListItem(
|
||||
number: json['number'] as int?,
|
||||
subject: json['subject'] as String?,
|
||||
status: json['status'] as int?,
|
||||
name: json['name'] as String?,
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user