member audio

member comic

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-06-22 21:23:25 +08:00
parent c6a377b9d4
commit 79e30047f5
19 changed files with 640 additions and 33 deletions

View File

@@ -32,6 +32,8 @@ class SpaceArchiveItem extends BaseSimpleVideoItemModel {
List<Badge>? badges;
SpaceArchiveSeason? season;
History? history;
String? styles;
String? label;
SpaceArchiveItem.fromJson(Map<String, dynamic> json) {
title = json['title'];
@@ -75,5 +77,7 @@ class SpaceArchiveItem extends BaseSimpleVideoItemModel {
: SpaceArchiveSeason.fromJson(json['season'] as Map<String, dynamic>);
stat = PlayStat.fromJson(json);
owner = Owner(mid: 0, name: json['author']);
styles = json['styles'];
label = json['label'];
}
}