first commit
This commit is contained in:
10
frontend/app/utils/interface/expense.ts
Normal file
10
frontend/app/utils/interface/expense.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
export interface Expense {
|
||||
expenseIdentifier?: string;
|
||||
expenseName: string;
|
||||
location: string;
|
||||
currency: string;
|
||||
cost: number;
|
||||
quantity: number;
|
||||
totalCost: number;
|
||||
remarks: string;
|
||||
}
|
||||
Reference in New Issue
Block a user