web archive

Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-23 18:28:38 +08:00
parent 2220372e4f
commit b4b3764e5f
39 changed files with 1005 additions and 306 deletions

View File

@@ -0,0 +1,15 @@
class ListTag {
int? tid;
int? count;
String? name;
String? specialType;
ListTag({this.tid, this.count, this.name, this.specialType});
factory ListTag.fromJson(Map<String, dynamic> json) => ListTag(
tid: json['tid'] as int?,
count: json['count'] as int?,
name: json['name'] as String?,
specialType: json['special_type'] as String?,
);
}