Files
encoach_frontend/src/interfaces/user.payments.ts
2024-01-12 01:38:34 +00:00

5 lines
155 B
TypeScript

// these arrays contain the ids of the corporates that have paid or not paid
export interface PaymentsStatus {
pending: string[];
done: string[];
}