Files
2026-01-27 14:09:12 +01:00

11 lines
216 B
Dart

final class ErrorDto {
int error;
String message;
ErrorDto(this.error, this.message);
ErrorDto.fromJson(Map<String, dynamic> json)
: error = json['error'] as int,
message = json['message'];
}