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});
|
|
}
|