first commit

This commit is contained in:
2026-04-29 12:53:22 +07:00
commit e6a30eddd3
394 changed files with 16408 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
class LogoutResponse {
LogoutResponse({
required this.status,
required this.message,
});
factory LogoutResponse.fromJson(Map<String, dynamic> json) {
return LogoutResponse(
status: json['status']?.toString() ?? '',
message: json['message']?.toString() ?? '',
);
}
final String status;
final String message;
}