mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-06-01 08:38:18 +08:00
26
lib/models_new/space/space_season_series/meta.dart
Normal file
26
lib/models_new/space/space_season_series/meta.dart
Normal file
@@ -0,0 +1,26 @@
|
||||
class SpaceSsMeta {
|
||||
String? cover;
|
||||
String? name;
|
||||
int? ptime;
|
||||
int? total;
|
||||
dynamic seasonId;
|
||||
dynamic seriesId;
|
||||
|
||||
SpaceSsMeta({
|
||||
this.cover,
|
||||
this.name,
|
||||
this.ptime,
|
||||
this.total,
|
||||
this.seasonId,
|
||||
this.seriesId,
|
||||
});
|
||||
|
||||
factory SpaceSsMeta.fromJson(Map<String, dynamic> json) => SpaceSsMeta(
|
||||
cover: json["cover"],
|
||||
name: json["name"],
|
||||
ptime: json["ptime"],
|
||||
total: json["total"],
|
||||
seasonId: json["season_id"],
|
||||
seriesId: json["series_id"],
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user