Update to new structure

This commit is contained in:
Çetin
2022-07-22 13:13:50 +03:00
parent 12bc4574d2
commit af7e863f4d
422 changed files with 5238 additions and 209563 deletions
+20
View File
@@ -0,0 +1,20 @@
export interface Country {
name?: string;
code?: string;
}
export interface Representative {
name?: string;
image?: string;
}
export interface Customer {
id?: number;
name?: string;
country?: Country;
company?: string;
date?: string;
status?: string;
activity?: number;
representative?: Representative;
}
+6
View File
@@ -0,0 +1,6 @@
export interface Image {
previewImageSrc?:any;
thumbnailImageSrc?:any;
alt?:any;
title?:any;
}
+12
View File
@@ -0,0 +1,12 @@
export interface Product {
id?: string;
code?: string;
name?: string;
description?: string;
price?: number;
quantity?: number;
inventoryStatus?: any;
category?: string;
image?: string;
rating?: number;
}