mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 18:46:53 +08:00
23 lines
669 B
Dart
23 lines
669 B
Dart
import 'package:PiliPlus/models/video_detail/episode.dart';
|
|
|
|
class SectionItem {
|
|
int? seasonId;
|
|
int? id;
|
|
String? title;
|
|
int? type;
|
|
List<EpisodeItem>? episodes;
|
|
bool isReversed = false;
|
|
|
|
SectionItem({this.seasonId, this.id, this.title, this.type, this.episodes});
|
|
|
|
factory SectionItem.fromJson(Map<String, dynamic> json) => SectionItem(
|
|
seasonId: json['season_id'] as int?,
|
|
id: json['id'] as int?,
|
|
title: json['title'] as String?,
|
|
type: json['type'] as int?,
|
|
episodes: (json['episodes'] as List<dynamic>?)
|
|
?.map((e) => EpisodeItem.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
);
|
|
}
|