mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-21 19:28:27 +08:00
26
lib/models_new/fav/fav_pgc/first_ep_info.dart
Normal file
26
lib/models_new/fav/fav_pgc/first_ep_info.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
class FirstEpInfo {
|
||||
int? id;
|
||||
String? cover;
|
||||
String? title;
|
||||
String? longTitle;
|
||||
String? pubTime;
|
||||
int? duration;
|
||||
|
||||
FirstEpInfo({
|
||||
this.id,
|
||||
this.cover,
|
||||
this.title,
|
||||
this.longTitle,
|
||||
this.pubTime,
|
||||
this.duration,
|
||||
});
|
||||
|
||||
factory FirstEpInfo.fromJson(Map<String, dynamic> json) => FirstEpInfo(
|
||||
id: json['id'] as int?,
|
||||
cover: json['cover'] as String?,
|
||||
title: json['title'] as String?,
|
||||
longTitle: json['long_title'] as String?,
|
||||
pubTime: json['pub_time'] as String?,
|
||||
duration: json['duration'] as int?,
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user