mod: show lv6_s

Closes #687

Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
This commit is contained in:
bggRGjQaUbCoE
2025-04-15 17:43:44 +08:00
parent 14f8ec37c5
commit bc8907b3ef
22 changed files with 26 additions and 8 deletions

View File

@@ -123,6 +123,7 @@ class SearchUserItemModel {
this.isLive,
this.roomId,
this.officialVerify,
this.isSeniorMember,
});
String? type;
@@ -141,6 +142,7 @@ class SearchUserItemModel {
int? isLive;
int? roomId;
Map? officialVerify;
int? isSeniorMember;
SearchUserItemModel.fromJson(Map<String, dynamic> json) {
type = json['type'];
@@ -159,6 +161,7 @@ class SearchUserItemModel {
isLive = json['is_live'];
roomId = json['room_id'];
officialVerify = json['official_verify'];
isSeniorMember = json['is_senior_member'];
}
}