bookmywages/lib/model/otp_model.dart
2025-10-16 11:21:52 +05:30

14 lines
256 B
Dart

class OtpModel {
final String userId; // Keep as String
final String otp;
OtpModel({required this.userId, required this.otp});
Map<String, dynamic> toJson() {
return {
'user_id': userId, // Send as String
'otp': otp,
};
}
}