mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-05-03 00:29:42 +08:00
10 lines
166 B
Dart
10 lines
166 B
Dart
class Top {
|
|
dynamic result;
|
|
|
|
Top({this.result});
|
|
|
|
factory Top.fromJson(Map<String, dynamic> json) => Top(
|
|
result: json['result'] as dynamic,
|
|
);
|
|
}
|