mod: show count of reply2reply

This commit is contained in:
bggRGjQaUbCoE
2024-09-07 17:48:40 +08:00
parent 72a59384b9
commit cc56705714
5 changed files with 11 additions and 5 deletions

View File

@@ -31,6 +31,7 @@ class ReplyItemModel {
this.isUp,
this.isTop,
this.cardLabel,
this.rcount,
});
int? rpid;
@@ -61,6 +62,7 @@ class ReplyItemModel {
bool? isUp;
bool? isTop = false;
List? cardLabel;
dynamic rcount;
ReplyItemModel.fromJson(Map<String, dynamic> json, upperMid,
{isTopStatus = false}) {
@@ -99,6 +101,7 @@ class ReplyItemModel {
cardLabel = json['card_label'] != null
? json['card_label'].map((e) => e['text_content']).toList()
: [];
rcount = json['rcount'];
}
}