dreampad/lib/app/models/page_result_model.dart
2023-11-28 10:45:09 +08:00

14 lines
209 B
Dart

class PageResult<T> {
int? total;
T? list;
PageResult({
this.total,
this.list,
});
PageResult.fromJson(Map<String, dynamic> json) {
total = json['total'];
list = json['list'];
}
}