Merge branch 'main' into design

This commit is contained in:
guozhigq
2024-11-14 00:40:02 +08:00
6 changed files with 105 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'];
}
}