Merge branch 'main' into design
This commit is contained in:
17
lib/models/video/tags.dart
Normal file
17
lib/models/video/tags.dart
Normal 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'];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user