Implemented file storage handling for Corporate Transfer and Comission Transfer

This commit is contained in:
Joao Ramos
2023-12-13 23:29:14 +00:00
parent 21b612eaa4
commit 020ecff29c
10 changed files with 473 additions and 12 deletions

View File

@@ -32,4 +32,6 @@ export interface Payment {
value: number;
isPaid: boolean;
date: Date;
corporateTransfer?: string;
commissionTransfer?: string;
}