Files
freeplanet/src/model/Estimate.ts

19 lines
378 B
TypeScript
Raw Normal View History

2019-07-12 18:23:16 +02:00
import { tools } from '@src/store/Modules/tools'
import { toolsext } from '@src/store/Modules/toolsext'
export interface IEstimate {
2019-07-14 18:43:56 +02:00
id?: number
2019-07-12 18:23:16 +02:00
title: string
advanced?: boolean
description?: string
viewlist?: number[]
listsel?: number
qtaName?: string
icon?: string
numpag?: number
qta?: number
2019-07-14 18:43:56 +02:00
price?: number
pricebase?: number
2019-07-12 18:23:16 +02:00
checksel?: boolean
}