Files
PiliPlus/lib/models/member_ss/stat.dart
bggRGjQaUbCoE fd55383778 opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-25 11:45:20 +08:00

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"],
);
}