This commit is contained in:
Mohammed Al-Samarraie
2026-01-13 13:07:31 +03:00
parent ac8a769ff0
commit fa4bee4771
15 changed files with 578 additions and 45 deletions

View File

@@ -0,0 +1,16 @@
class LoginDto {
final String phoneNumber;
final String password;
LoginDto({
required this.phoneNumber,
required this.password,
});
Map<String, dynamic> toJson() {
return {
'phoneNumber': phoneNumber,
'password': password,
};
}
}