Files
kmobile/lib/data/models/payment_response.dart
Nilanjan Chakrabarti 5e72baf1d3 Language Changes
2025-07-09 12:46:51 +05:30

20 lines
390 B
Dart

class PaymentResponse {
final bool isSuccess;
final DateTime? date;
final String? creditedAccount;
final String? amount;
final String? currency;
final String? errorMessage;
final String? errorCode;
PaymentResponse({
required this.isSuccess,
this.date,
this.creditedAccount,
this.amount,
this.currency,
this.errorMessage,
this.errorCode,
});
}