mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-24 20:35:50 +08:00
27 lines
495 B
Dart
27 lines
495 B
Dart
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"],
|
|
);
|
|
}
|