This commit is contained in:
2024-03-04 04:15:58 +03:00
parent 0db252bb27
commit 659d76b694
18 changed files with 366 additions and 75 deletions

5
src/types/Client.ts Normal file
View File

@@ -0,0 +1,5 @@
export type Client = {
id?: number;
name: string;
address: string;
}

8
src/types/QuickDeal.ts Normal file
View File

@@ -0,0 +1,8 @@
import {Client} from "./Client.ts";
export type QuickDeal = {
name: string;
client: Client
comment: string;
acceptance_date: string;
}