mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-06 09:13:48 +08:00
mod: tweaks opt: publish page Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
19 lines
348 B
Dart
19 lines
348 B
Dart
import 'package:PiliPlus/models/video/reply/item.dart';
|
|
|
|
class ReplyUpper {
|
|
ReplyUpper({
|
|
this.mid,
|
|
this.top,
|
|
});
|
|
|
|
int? mid;
|
|
ReplyItemModel? top;
|
|
|
|
ReplyUpper.fromJson(Map<String, dynamic> json) {
|
|
mid = json['mid'];
|
|
top = json['top'] != null
|
|
? ReplyItemModel.fromJson(json['top'], json['mid'])
|
|
: null;
|
|
}
|
|
}
|