This commit is contained in:
2024-03-05 04:58:05 +03:00
parent 659d76b694
commit e2962f3be2
11 changed files with 141 additions and 56 deletions

View File

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