Files
myprojplanet_vite/src/model/Estimate.ts
2021-09-16 21:08:02 +02:00

19 lines
382 B
TypeScript
Executable File

import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
export interface IEstimate {
id?: number
title: string
advanced?: boolean
description?: string
viewlist?: number[] | null
listsel?: number
qtaName?: string
icon?: string
numpag: number
qta?: number
price: number
pricebase: number
checksel?: boolean
}