opt handle res

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-05-25 11:16:35 +08:00
parent f29385ccef
commit fd55383778
91 changed files with 957 additions and 387 deletions

View File

@@ -0,0 +1,50 @@
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"],
);
}