Added payment done and pending

This commit is contained in:
Joao Ramos
2024-01-12 01:38:34 +00:00
parent 34c1041182
commit 27a4014f63
4 changed files with 146 additions and 7 deletions

View File

@@ -0,0 +1,5 @@
// these arrays contain the ids of the corporates that have paid or not paid
export interface PaymentsStatus {
pending: string[];
done: string[];
}