Language Changes
This commit is contained in:
11
lib/features/auth/models/auth_credentials.dart
Normal file
11
lib/features/auth/models/auth_credentials.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
class AuthCredentials {
|
||||
final String customerNo;
|
||||
final String password;
|
||||
|
||||
AuthCredentials({required this.customerNo, required this.password});
|
||||
|
||||
Map<String, dynamic> toJson() => {
|
||||
'customerNo': customerNo,
|
||||
'password': password,
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user