Files
myprojplanet_vite/src/model/Estimate.ts

19 lines
382 B
TypeScript
Raw Normal View History

2021-08-31 18:09:59 +02:00
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
2021-09-16 21:08:02 +02:00
viewlist?: number[] | null
2021-08-31 18:09:59 +02:00
listsel?: number
qtaName?: string
icon?: string
2021-09-16 21:08:02 +02:00
numpag: number
2021-08-31 18:09:59 +02:00
qta?: number
2021-09-16 21:08:02 +02:00
price: number
pricebase: number
2021-08-31 18:09:59 +02:00
checksel?: boolean
}