Creating Estimate Page

This commit is contained in:
Paolo Arena
2019-07-12 18:23:16 +02:00
parent b11dd46f9f
commit 6a92dbeca8
11 changed files with 328 additions and 12 deletions

17
src/model/Estimate.ts Normal file
View File

@@ -0,0 +1,17 @@
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[]
listsel?: number
qtaName?: string
icon?: string
numpag?: number
qta?: number
price: number
checksel?: boolean
}

View File

@@ -10,3 +10,4 @@ export * from './Todos'
export * from './Projects'
export * from './Calendar'
export * from './Estimate'