multiple payout page and small fixes
This commit is contained in:
1
frontend/pweb/lib/models/dashboard_payment_mode.dart
Normal file
1
frontend/pweb/lib/models/dashboard_payment_mode.dart
Normal file
@@ -0,0 +1 @@
|
||||
enum DashboardPayoutMode { single, multiple }
|
||||
13
frontend/pweb/lib/models/summary_values.dart
Normal file
13
frontend/pweb/lib/models/summary_values.dart
Normal file
@@ -0,0 +1,13 @@
|
||||
class PaymentSummaryValues {
|
||||
final String sentAmount;
|
||||
final String fee;
|
||||
final String recipientReceives;
|
||||
final String total;
|
||||
|
||||
const PaymentSummaryValues({
|
||||
required this.sentAmount,
|
||||
required this.fee,
|
||||
required this.recipientReceives,
|
||||
required this.total,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user