mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-23 10:36:24 +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();
|
|
}
|
|
}
|