mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 18:46:53 +08:00
28 lines
646 B
Dart
28 lines
646 B
Dart
import 'package:PiliPlus/models_new/pgc/pgc_timeline/episode.dart';
|
|
|
|
class Result {
|
|
String? date;
|
|
int? dateTs;
|
|
int? dayOfWeek;
|
|
List<Episode>? episodes;
|
|
int? isToday;
|
|
|
|
Result({
|
|
this.date,
|
|
this.dateTs,
|
|
this.dayOfWeek,
|
|
this.episodes,
|
|
this.isToday,
|
|
});
|
|
|
|
factory Result.fromJson(Map<String, dynamic> json) => Result(
|
|
date: json['date'] as String?,
|
|
dateTs: json['date_ts'] as int?,
|
|
dayOfWeek: json['day_of_week'] as int?,
|
|
episodes: (json['episodes'] as List<dynamic>?)
|
|
?.map((e) => Episode.fromJson(e as Map<String, dynamic>))
|
|
.toList(),
|
|
isToday: json['is_today'] as int?,
|
|
);
|
|
}
|