feat: video tags

This commit is contained in:
guozhigq
2024-11-02 22:24:59 +08:00
parent d082a77885
commit 294ea9e1b7
6 changed files with 111 additions and 13 deletions

View File

@ -0,0 +1,17 @@
class VideoTagItem {
String? tagName;
int? tagId;
int? tagType;
VideoTagItem({
this.tagName,
this.tagId,
this.tagType,
});
VideoTagItem.fromJson(Map<String, dynamic> json) {
tagName = json['tag_name'];
tagId = json['tag_id'];
tagType = json['type'];
}
}