mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-02 16:19:44 +08:00
14 lines
313 B
Dart
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();
|
|
}
|
|
}
|