This commit is contained in:
2023-08-03 08:58:53 +03:00
parent c82f8e3537
commit ad31d3ffce
30 changed files with 697 additions and 24 deletions
@@ -23,3 +23,13 @@ export interface DashboardRestModel {
currencyQuantity: number;
balanceAtRate: number;
}
export interface DashboardInOutModel {
data: DashboardInOutItemModel[];
}
export interface DashboardInOutItemModel {
id: string;
name: string;
value: number;
}