feat: 视频详情页关注分组

This commit is contained in:
guozhigq
2023-09-28 19:58:00 +08:00
parent 2ecd1d3dab
commit 6d982bdba2
5 changed files with 250 additions and 0 deletions

View File

@ -0,0 +1,23 @@
class MemberTagItemModel {
MemberTagItemModel({
this.count,
this.name,
this.tagid,
this.tip,
this.checked,
});
int? count;
String? name;
int? tagid;
String? tip;
bool? checked;
MemberTagItemModel.fromJson(Map<String, dynamic> json) {
count = json['count'];
name = json['name'];
tagid = json['tagid'];
tip = json['tip'];
checked = false;
}
}