This commit is contained in:
Arseni
2026-03-04 17:43:18 +03:00
parent 80b25a8608
commit aff804ec58
46 changed files with 1090 additions and 345 deletions

View File

@@ -0,0 +1,9 @@
class OperationDocumentRequestModel {
final String paymentRef;
final String operationRef;
const OperationDocumentRequestModel({
required this.paymentRef,
required this.operationRef,
});
}

View File

@@ -0,0 +1,6 @@
enum SourceOfFundsVisibleState {
headerAction,
summary,
quoteStatus,
sendAction,
}