mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-19 00:26:18 +08:00
14 lines
349 B
Dart
14 lines
349 B
Dart
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?,
|
|
);
|
|
}
|