mod: model_hot_video_item
This commit is contained in:
17
lib/models/model_owner.dart
Normal file
17
lib/models/model_owner.dart
Normal 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'];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user