fetch dyn type onlyfansQaCard

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-03 18:41:29 +08:00
parent f9f52e918a
commit 3d99e6c761
5 changed files with 27 additions and 33 deletions

View File

@@ -867,6 +867,7 @@ class DynamicMajorModel {
String? type;
DynamicArchiveModel? courses;
Common? common;
Common? upowerCommon;
Music? music;
ModuleBlocked? blocked;
Medialist? medialist;
@@ -900,6 +901,9 @@ class DynamicMajorModel {
? null
: DynamicArchiveModel.fromJson(json['courses']);
common = json['common'] == null ? null : Common.fromJson(json['common']);
upowerCommon = json['upower_common'] == null
? null
: Common.fromJson(json['upower_common']);
music = json['music'] == null ? null : Music.fromJson(json['music']);
blocked = json['blocked'] == null
? null