mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-22 01:56:47 +08:00
51 lines
976 B
Dart
51 lines
976 B
Dart
class MemberSsStat {
|
|
int? view;
|
|
int? vt;
|
|
|
|
MemberSsStat({
|
|
this.view,
|
|
this.vt,
|
|
});
|
|
|
|
factory MemberSsStat.fromJson(Map<String, dynamic> json) => MemberSsStat(
|
|
view: json["view"],
|
|
vt: json["vt"],
|
|
);
|
|
}
|
|
|
|
class MemberSsMeta {
|
|
int? category;
|
|
String? cover;
|
|
String? description;
|
|
int? mid;
|
|
String? name;
|
|
int? ptime;
|
|
int? total;
|
|
dynamic seasonId;
|
|
dynamic seriesId;
|
|
|
|
MemberSsMeta({
|
|
this.category,
|
|
this.cover,
|
|
this.description,
|
|
this.mid,
|
|
this.name,
|
|
this.ptime,
|
|
this.total,
|
|
this.seasonId,
|
|
this.seriesId,
|
|
});
|
|
|
|
factory MemberSsMeta.fromJson(Map<String, dynamic> json) => MemberSsMeta(
|
|
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"],
|
|
);
|
|
}
|