Created a list of payments

This commit is contained in:
Tiago Ribeiro
2023-11-27 22:27:51 +00:00
parent 3878d4761e
commit 9bed726062
8 changed files with 400 additions and 5 deletions

View File

@@ -21,3 +21,14 @@ export interface Package {
}
export type DurationUnit = "weeks" | "days" | "months" | "years";
export interface Payment {
id: string;
corporate: string;
agent?: string;
agentCommission: number;
agentValue: number;
currency: string;
value: number;
isPaid: boolean;
}