small fixes for single payout and big chunck for multiple payouts
This commit is contained in:
17
frontend/pweb/lib/models/multiple_payouts/csv_row.dart
Normal file
17
frontend/pweb/lib/models/multiple_payouts/csv_row.dart
Normal file
@@ -0,0 +1,17 @@
|
||||
class CsvPayoutRow {
|
||||
final String pan;
|
||||
final String firstName;
|
||||
final String lastName;
|
||||
final int expMonth;
|
||||
final int expYear;
|
||||
final String amount;
|
||||
|
||||
const CsvPayoutRow({
|
||||
required this.pan,
|
||||
required this.firstName,
|
||||
required this.lastName,
|
||||
required this.expMonth,
|
||||
required this.expYear,
|
||||
required this.amount,
|
||||
});
|
||||
}
|
||||
1
frontend/pweb/lib/models/multiple_payouts/state.dart
Normal file
1
frontend/pweb/lib/models/multiple_payouts/state.dart
Normal file
@@ -0,0 +1 @@
|
||||
enum MultiplePayoutsState { idle, quoting, sending }
|
||||
Reference in New Issue
Block a user