feat: musicDetail (#1157)

* feat: musicDetail

* opt: marquee
This commit is contained in:
My-Responsitories
2025-08-28 17:40:12 +08:00
committed by GitHub
parent 84f7f14a29
commit 08a33d9ce5
22 changed files with 1891 additions and 101 deletions

View File

@@ -1,12 +1,14 @@
class VideoTagItem {
int? tagId;
String? tagName;
String? tagType;
String? musicId;
String? jumpUrl;
VideoTagItem({
this.tagId,
this.tagName,
this.tagType,
this.musicId,
this.jumpUrl,
});
@@ -14,6 +16,7 @@ class VideoTagItem {
factory VideoTagItem.fromJson(Map<String, dynamic> json) => VideoTagItem(
tagId: json["tag_id"],
tagName: json["tag_name"],
tagType: json["tag_type"],
musicId: json["music_id"],
jumpUrl: json["jump_url"],
);