mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-26 21:35:49 +08:00
13
lib/models_new/pgc/pgc_info_model/series.dart
Normal file
13
lib/models_new/pgc/pgc_info_model/series.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class Series {
|
||||
int? displayType;
|
||||
int? seriesId;
|
||||
String? seriesTitle;
|
||||
|
||||
Series({this.displayType, this.seriesId, this.seriesTitle});
|
||||
|
||||
factory Series.fromJson(Map<String, dynamic> json) => Series(
|
||||
displayType: json['display_type'] as int?,
|
||||
seriesId: json['series_id'] as int?,
|
||||
seriesTitle: json['series_title'] as String?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user