mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-07-15 22:00:12 +08:00
committed by
GitHub
parent
84f7f14a29
commit
08a33d9ce5
@@ -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"],
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user