mod: model_hot_video_item

This commit is contained in:
guozhigq
2023-04-19 16:43:15 +08:00
parent 96e9dcc040
commit dcc99083a4
6 changed files with 202 additions and 35 deletions

View File

@ -0,0 +1,17 @@
class Owner {
Owner({
this.mid,
this.name,
this.face,
});
int? mid;
String? name;
String? face;
Owner.fromJson(Map<String, dynamic> json) {
mid = json["mid"];
name = json["name"];
face = json['face'];
}
}