added comment for payment, changed intent and added amount ui in operations

This commit is contained in:
Arseni
2026-03-12 00:09:38 +03:00
parent ddc2f1facc
commit 13b84e1e0f
26 changed files with 271 additions and 298 deletions

View File

@@ -5,6 +5,7 @@ class CsvPayoutRow {
final int expMonth;
final int expYear;
final String amount;
final String? comment;
const CsvPayoutRow({
required this.pan,
@@ -13,5 +14,6 @@ class CsvPayoutRow {
required this.expMonth,
required this.expYear,
required this.amount,
this.comment,
});
}