mangayomi/lib/eval/model/m_http_response.dart
2023-10-25 19:04:57 +01:00

7 lines
140 B
Dart

class MHttpResponse {
bool? hasError;
int? statusCode;
String? body;
MHttpResponse({this.body, this.hasError, this.statusCode});
}