Files
PiliPlus/lib/models/video_detail/honor_reply.dart
bggRGjQaUbCoE 924d51d41b opt handle res
Signed-off-by: bggRGjQaUbCoE <githubaccount56556@proton.me>
2025-05-29 17:17:42 +08:00

14 lines
313 B
Dart

class HonorReply {
HonorReply();
factory HonorReply.fromJson(Map<String, dynamic> json) {
// TODO: implement fromJson
throw UnimplementedError('HonorReply.fromJson($json) is not implemented');
}
Map<String, dynamic> toJson() {
// TODO: implement toJson
throw UnimplementedError();
}
}