mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-11 04:10:53 +00:00
7 lines
140 B
Dart
7 lines
140 B
Dart
class MHttpResponse {
|
|
bool? hasError;
|
|
int? statusCode;
|
|
String? body;
|
|
|
|
MHttpResponse({this.body, this.hasError, this.statusCode});
|
|
}
|