Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-17 17:09:24 +08:00
parent 7f2682bb7b
commit d1497115da
27 changed files with 118 additions and 141 deletions

View File

@@ -340,6 +340,7 @@ class Common {
int? style;
String? subType;
String? title;
String? titlePrefix;
Common.fromJson(Map<String, dynamic> json) {
cover = json['cover'];
@@ -352,6 +353,7 @@ class Common {
style = json['style'];
subType = json['sub_type'];
title = json['title'];
titlePrefix = json['title_prefix'];
}
}