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