kmobile/lib/features/auth/models/auth_credentials.dart
2025-06-02 10:29:32 +05:30

12 lines
261 B
Dart

class AuthCredentials {
final String customerNo;
final String password;
AuthCredentials({required this.customerNo, required this.password});
Map<String, dynamic> toJson() => {
'customerNo': customerNo,
'password': password,
};
}