This commit is contained in:
2023-07-23 20:27:23 +03:00
parent d0cdaa85b6
commit 96eca795ab
62 changed files with 2934 additions and 847 deletions
@@ -5,7 +5,21 @@ export interface DashboardModel {
outcomeLast: number;
outcomePrevious: number;
outcomeChange: number;
balance: number;
balanceDebit: number;
balanceCredit: number;
balanceRests: DashboardRestModel[];
}
export interface DashboardRestModel {
id: string;
name: string;
currencyName: string;
currencyShortName: string;
balance: number;
currencyRate: number;
currencyQuantity: number;
balanceAtRate: number;
}