10 lines
172 B
Dart
10 lines
172 B
Dart
class SearchAllModel {
|
|
SearchAllModel({this.topTList});
|
|
|
|
Map? topTList;
|
|
|
|
SearchAllModel.fromJson(Map<String, dynamic> json) {
|
|
topTList = json['top_tlist'];
|
|
}
|
|
}
|