mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-02 00:58:19 +08:00
feat: popular series/precious
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
16
lib/models_new/popular/popular_series_list/list.dart
Normal file
16
lib/models_new/popular/popular_series_list/list.dart
Normal file
@@ -0,0 +1,16 @@
|
||||
class PopularSeriesListItem {
|
||||
int? number;
|
||||
String? subject;
|
||||
int? status;
|
||||
String? name;
|
||||
|
||||
PopularSeriesListItem({this.number, this.subject, this.status, 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