mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
opt: avatar model (#814)
This commit is contained in:
committed by
GitHub
parent
07d2b3b464
commit
cdeb843a84
@@ -1,3 +1,5 @@
|
||||
import 'package:PiliPlus/models/model_avatar.dart';
|
||||
|
||||
class MemberInfoModel {
|
||||
MemberInfoModel({
|
||||
this.mid,
|
||||
@@ -44,27 +46,6 @@ class MemberInfoModel {
|
||||
}
|
||||
}
|
||||
|
||||
class Vip {
|
||||
Vip({
|
||||
this.type,
|
||||
this.status,
|
||||
this.dueDate,
|
||||
this.label,
|
||||
});
|
||||
|
||||
int? type;
|
||||
int? status;
|
||||
int? dueDate;
|
||||
Map? label;
|
||||
|
||||
Vip.fromJson(Map<String, dynamic> json) {
|
||||
type = json['type'];
|
||||
status = json['status'];
|
||||
dueDate = json['due_date'];
|
||||
label = json['label'];
|
||||
}
|
||||
}
|
||||
|
||||
class LiveRoom {
|
||||
LiveRoom({
|
||||
this.roomStatus,
|
||||
|
||||
Reference in New Issue
Block a user